skip to Main Content

React Native Text Not Showing

import { StyleSheet, Text, View, Image } from 'react-native'; import React, { Component } from 'react'; interface AvatarProps { fullName: string; membership: string; } export default class Avatar extends Component<AvatarProps> { render() { const { fullName, membership } = this.props;…

VIEW QUESTION

React Native Container Styling

This is the container that I create looks: This is the style I want. How can I do this. The code is: <View> { usersInfo.map((item) => <View key={item.id} style={{}}> {Object.entries(item.intrest).map(([interestName, interestValue]) => ( <View key={interestName} style={{ backgroundColor: interestValue === 'Games…

VIEW QUESTION
Back To Top
Search