Obanana_test/app/components/main/notification/NotifCard.jsx

32 lines
560 B
React
Raw Permalink Normal View History

2023-09-26 14:33:01 +08:00
import React from 'react'
import { View,Text,StyleSheet } from 'react-native'
const NotifCard = () => {
return (
<View style={styles.container}><Text>Search</Text></View>
)
}
const styles = StyleSheet.create({
container: {
backgroundColor: "#fff",
height: "100%",
justifyContent: "center",
alignItems: "center",
},
header: {
position: "fixed",
width:'100%',
top: 0,
},
footer: {
// position: "absolute",
bottom: 0,
width:'100%',
},
wrapper: {
height: "85%",
},
});
export default NotifCard