Skip to content

Commit 49c8ed0

Browse files
committed
fix: add padding to UTXO picker and remove vertical scrolling
1 parent e5db243 commit 49c8ed0

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

components/UTXOPicker.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,7 @@ export default class UTXOPicker extends React.Component<
434434
</View>
435435
) : (
436436
<FlatList
437+
showsVerticalScrollIndicator={false}
437438
data={utxos}
438439
contentContainerStyle={styles.listContent}
439440
extraData={utxosSelected}
@@ -577,7 +578,8 @@ const styles = StyleSheet.create({
577578
borderTopLeftRadius: 20,
578579
borderTopRightRadius: 20,
579580
paddingHorizontal: 16,
580-
paddingTop: 8
581+
paddingTop: 16,
582+
paddingBottom: 16
581583
},
582584
sheetInner: {
583585
flex: 1
@@ -593,6 +595,7 @@ const styles = StyleSheet.create({
593595
sheetTitle: {
594596
fontSize: 20,
595597
fontWeight: '600',
598+
paddingTop: 4,
596599
textAlign: 'center',
597600
fontFamily: 'PPNeueMontreal-Book'
598601
},

0 commit comments

Comments
 (0)