This is the official documentation of the @unitools/utils
package.
npm install @unitools/utils
or
yarn add -D @unitools/utils
import { Platform } from "@unitools/utils";
export default function Home() {
return (
<View
style={{
flex: 1,
justifyContent: "center",
alignItems: "center",
backgroundColor: Platform === "next" ? "lightblue" : "lightgreen",
}}
/>
);
}