skip to Main Content

React Native: Vector Icons Not Rendering

I'm currently following this article's tutorial from React Navigation, using these versions of their packages: "@react-navigation/bottom-tabs": "^6.5.20", "@react-navigation/native": "^6.1.17", They're imported (in addition to Ionicons used in my code below) as such: import { NavigationContainer } from '@react-navigation/native'; import {…

VIEW QUESTION

REACT NATIVE QUESTION TypeError: undefined is not an object (evaluating 'navigation.navigate') …,

App.js (Login) import * as React from 'react'; import {useState} from 'react'; import { Text, StyleSheet, KeyboardAvoidingView, ScrollView, Image, TextInput, TouchableOpacity, View } from 'react-native'; import { CheckBox } from 'react-native-elements'; import {Ionicons} from '@expo/vector-icons' import {statusBar01} from './src/statusBar'; const…

VIEW QUESTION
Back To Top
Search