** here is my home page code **
problem is View Container that contain
<Text>DeliverNow!</Text>
<Text>Current location</Text>
<ChevronDownIcon/>
need to take whole space. but it doesn't taking the whole left space
and UserIcon need to come at last
what i used flex-grow not work justify content property not work
*enter code here*
<SafeAreaView className="bg-white pt-5">
<Text className='text-red-500'>
<View className="flex flex-row pb-3 items-center mx-4 space-x-2">
<Image
source={{
uri: "https://links.papareact.com/wru",
}}
className="h-7 w-7 bg-gray-300 rounded-full p-4"
/>
> > > > flex-grow property is used here
**just Below view tag **
<View className='flex-1'>
<Text className="font-bold text-xs text-gray-300 ">
Deliver Now!
</Text>
<Text className="font-bold text-xl">
Current Location
<ChevronDownIcon size={20} color="#00CCBB" />
</Text>
</View>
<UserIcon size={35} color="#00CCBB"/>
</View>
</Text>
</SafeAreaView>