Installation Native-Base
native base for using tamplate
Install dependencies
npm install native-base
import React from "react";
import { NativeBaseProvider, Box } from "native-base";
export default function App() {
return (
<NativeBaseProvider>
<Box>Hello world</Box>
</NativeBaseProvider>
);
}e
Last updated
Was this helpful?