### Installing React Native Game UI Package - npm Source: https://github.com/holasebas/react-native-gameui/blob/master/README.md Installs the `react-native-gameui` package from npm and saves it as a dependency in the project's `package.json` file. This is the initial step to include the library in your React Native project. ```bash npm install react-native-gameui --save ``` -------------------------------- ### Linking React Native Dependencies - CLI Source: https://github.com/holasebas/react-native-gameui/blob/master/README.md Links native dependencies for the `react-native-gameui` library. This command is crucial for ensuring that any native modules used by the library are correctly integrated into your iOS and Android projects. ```bash react-native link ``` -------------------------------- ### Using React Native Game UI Components - JavaScript Source: https://github.com/holasebas/react-native-gameui/blob/master/README.md Demonstrates how to import and use the `GameButton`, `IconButton`, `GameIcon`, and `ProgressBar` components from the `react-native-gameui` library within a React Native application. It shows a basic `App` component rendering these UI elements inside a `View` with defined styles. ```javascript import { GameButton, IconButton, GameIcon, ProgressBar } from 'react-native-gameui'; export default class App extends Component { render() { return ( ); } } const styles = StyleSheet.create({ container: { flex:1, justifyContent: 'center', alignItems:'center', backgroundColor:'#f5f5f5', }, }); ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.