native-safe-area
v1.0.7
Published
This Is a Package For react Native to Use Safe Area For IOS & Andriod
Downloads
2
Readme
Native Safe Area
This Is a Package For react Native to Use Safe Area For IOS & Andriod
Installation
Install native-safe-area with npm
npm i native-safe-area
Usage/Examples
import React from "react";
import { View, Text } from "react-native";
import SafeAreaView from "react-native-safe-area-view";
const App = () => {
return (
<SafeAreaView style={{ flex: 1 }}>
<View style={{ flex: 1, alignItems: "center", justifyContent: "center" }}>
<Text>Hello, world!</Text>
</View>
</SafeAreaView>
);
};
export default App;
Authors
FAQ
Will this Work onm Android
Yes
Will this Work onm IOS
Yes