import React from "react"; import { StyleSheet, Text, View, Alert } from "react-native"; import { BottomAppContainer, BottomAppButton } from "bottom-app-bar"; export default function App() { return ( I'm an App! Alert.alert("Pokemons")} /> Alert.alert("Near by Pokemons")} /> Alert.alert("Duel Started")} /> ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: "#fff", alignItems: "center", justifyContent: "center" } });