mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-11 18:35:58 +02:00
add missing save to invites & url shortener settings, update external urls settings
This commit is contained in:
parent
d00c0630a6
commit
b376aa3721
9 changed files with 518 additions and 27 deletions
|
@ -38,6 +38,7 @@ export interface SelectProps {
|
|||
left?: DimensionValue;
|
||||
right?: DimensionValue;
|
||||
};
|
||||
title?: string
|
||||
}
|
||||
|
||||
export default function Select({
|
||||
|
@ -51,6 +52,7 @@ export default function Select({
|
|||
maxHeight = 200,
|
||||
multiple = false,
|
||||
width,
|
||||
title,
|
||||
margin = {},
|
||||
renderSelectedItem = (item, key) => (
|
||||
<Text
|
||||
|
@ -122,6 +124,16 @@ export default function Select({
|
|||
marginBottom: margin.bottom,
|
||||
}}
|
||||
>
|
||||
{title && (
|
||||
<Text
|
||||
style={{
|
||||
...styles.inputHeader,
|
||||
...(disabled && styles.inputHeaderDisabled),
|
||||
}}
|
||||
>
|
||||
{title}
|
||||
</Text>
|
||||
)}
|
||||
<TouchableOpacity
|
||||
style={styles.selectButton}
|
||||
onPress={() => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue