Commit ffbf4592 by tungnq

TODO: Điều chỉnh chiều cao thanh tìm kiếm và menu thả xuống về 30px để đồng bộ kích thước.

parent 842eb42b
......@@ -72,7 +72,7 @@ const styles = StyleSheet.create({
justifyContent: 'flex-start',
paddingLeft: 15,
flexDirection: 'row',
height: 42,
height: 30,
},
box_3: {
flexDirection: 'row',
......
......@@ -155,10 +155,11 @@ const ListWorkView = props => {
source={R.images.icSearch}
style={{width: 20, height: 20}}
/>
<View style={{flex: 1}}>
<TextInput
<View style={{flex: 1 , padding:0 , margin:0, height:30}}>
<TextInput
placeholder="Tìm kiếm"
style={styles.text}
style={[styles.text, {height:30 , padding:0, marginRight:15}]}
value={searchQuery}
onChangeText={setSearchQuery}
/>
......@@ -167,7 +168,7 @@ const ListWorkView = props => {
<View style={{flex: 0.1}}></View>
<View style={{flex: 1}}>
<Dropdown title={'Tìm kiếm'} height={40} />
<Dropdown title={'Tìm kiếm'} height={30} />
</View>
</View>
<FlatList
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment