AW5th / MBM-March

3/5/2021
0 stars 0 forks source link

Stateless Widgets #32

Open pkriegeraw5th opened 3 years ago

pkriegeraw5th commented 3 years ago

Using Stateless widgets and animated containers in order to complete the genre page.

3 hours

sinene commented 3 years ago

You wanna make everything a stateful widget so we can change the state of some things(objects, etc) which would be useful in many applications building this app.

Example: Change: class Artist_Type extends StatelessWidget { To: class Artist_Type extends StatefulWidget { @override _MyAppState createState() => _MyAppState(); } ` class _MyAppState extends State {`