Commit b88aa446 by tungnq

TODO: Fix giao diện lần 3

parent 49ef3881
...@@ -61,7 +61,9 @@ const styles = StyleSheet.create({ ...@@ -61,7 +61,9 @@ const styles = StyleSheet.create({
color: R.colors.black, color: R.colors.black,
}, },
body: {}, body: {
flex:1,
},
listContainer: { listContainer: {
paddingBottom: 20, paddingBottom: 20,
}, },
......
...@@ -133,7 +133,6 @@ const ListStudentView = props => { ...@@ -133,7 +133,6 @@ const ListStudentView = props => {
<View style={styles.body}> <View style={styles.body}>
{renderSearchBox()} {renderSearchBox()}
{renderListStatus()} {renderListStatus()}
<View style={{flex:1}}>
<FlatList <FlatList
data={filter || []} data={filter || []}
renderItem={renderStudentItem} renderItem={renderStudentItem}
...@@ -141,7 +140,6 @@ const ListStudentView = props => { ...@@ -141,7 +140,6 @@ const ListStudentView = props => {
keyExtractor={(item, index) => `${index}`} keyExtractor={(item, index) => `${index}`}
showsVerticalScrollIndicator={false} showsVerticalScrollIndicator={false}
/> />
</View>
</View> </View>
</View> </View>
); );
......
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