### Start Next.js Development Server Source: https://github.com/geekyants/nativebase/blob/master/next-example/README.md Commands to initiate the Next.js development server, making the application accessible via a local URL. Both npm and yarn package managers are supported. ```bash npm run dev # or yarn dev ``` -------------------------------- ### Start NativeBase Example App Source: https://github.com/geekyants/nativebase/blob/master/CONTRIBUTING.md Starts the NativeBase example application, typically for general development and testing across platforms. ```bash yarn example start ``` -------------------------------- ### Start NativeBase Example App on Web Source: https://github.com/geekyants/nativebase/blob/master/CONTRIBUTING.md Starts the NativeBase example application specifically for web platforms, useful for web-focused development. ```bash yarn example web ``` -------------------------------- ### Install Example App Dependencies Source: https://github.com/geekyants/nativebase/blob/master/CONTRIBUTING.md Installs all necessary dependencies for the NativeBase example application using Yarn, allowing it to run correctly. ```bash yarn ``` -------------------------------- ### Start NativeBase Example App on iOS Source: https://github.com/geekyants/nativebase/blob/master/CONTRIBUTING.md Starts the NativeBase example application specifically for iOS simulators or devices, aiding in mobile development. ```bash yarn example ios ``` -------------------------------- ### Start NativeBase Example App on Android Source: https://github.com/geekyants/nativebase/blob/master/CONTRIBUTING.md Starts the NativeBase example application specifically for Android emulators or devices, crucial for Android development. ```bash yarn example android ``` -------------------------------- ### Navigate to Example App Directory Source: https://github.com/geekyants/nativebase/blob/master/CONTRIBUTING.md Changes the current directory to the 'example' application within the NativeBase project, where the testbed app resides. ```bash cd example ``` -------------------------------- ### Install NativeBase Root Dependencies Source: https://github.com/geekyants/nativebase/blob/master/CONTRIBUTING.md Installs all necessary project dependencies for the NativeBase monorepo using Yarn, required for building and running the project. ```bash yarn ``` -------------------------------- ### Clone NativeBase Repository Fork Source: https://github.com/geekyants/nativebase/blob/master/CONTRIBUTING.md Clones your forked NativeBase repository from GitHub to your local machine, initiating the development setup. ```git git clone git@github.com:${YOUR_USERNAME}/NativeBase.git ``` -------------------------------- ### Navigate to NativeBase Project Directory Source: https://github.com/geekyants/nativebase/blob/master/CONTRIBUTING.md Changes the current directory to the root of the cloned NativeBase project, preparing for further setup steps. ```bash cd NativeBase/ ``` -------------------------------- ### Navigate Back to NativeBase Root Directory Source: https://github.com/geekyants/nativebase/blob/master/CONTRIBUTING.md Changes the current directory back to the NativeBase project root after working in the example app, to continue with main project tasks. ```bash cd .. ``` -------------------------------- ### Add Main NativeBase Remote Source: https://github.com/geekyants/nativebase/blob/master/CONTRIBUTING.md Adds the official NativeBase repository as a remote to your local fork, enabling easy synchronization with upstream changes. ```git git remote add nativebase git@github.com:GeekyAnts/NativeBase.git ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.