React Native Tutorial - 16 - Activity Indicator

preview_player
Показать описание

📱 Follow Codevolution

Activity Indicator
React Native Tutorial
React Native Tutorial for Beginners
Рекомендации по теме
Комментарии
Автор

Damn easy, slow explained, and detailed clean content

pramodghodke
Автор

Love it how you break it down into small increments like this so that the lessons are not too long.

Hoangnguyen-fypx
Автор

Vishwas, thank you so much,
There are multiple tutorials out there but I would say that you're the BEST

no_one
Автор

With the Guru, everything seems so simple and easy. Waiting for Video nr 17, wonder which component it would be. Thanks once again, Mr Vishwas

maxfowzi
Автор

yes....i did toggle activity indicator ...thank you

mahasabri
Автор

Will there be an expo videos in the course in the future? I'd love to see that

abdu
Автор

Two lessons let's gooo ... waiting for more

seddeknadhem
Автор

Thanks for the job well done, Vishwas 👌👌. I am requesting for the link to the components properties because i have failed to find it on the official website.

Автор

exercises

import { View, ActivityIndicator, Button } from "react-native";
import { useState } from "react";

export default function App() {
const [loading, setLoading] = useState(false);

return (
<View style={{ flex: 1, backgroundColor: "plum", padding: 60 }}>
<Button onPress={() => setLoading(!loading)}>Show Loading</Button>
<ActivityIndicator
size="large"
color="midnightblue"
animating={loading}
/>
</View>
);
}

tuannguyenthai