flutter_planets_tutorial
flutter_planets_tutorial copied to clipboard
The Flutter Planets app tutorial with commits per lesson
**Updates:** - Updated .gitignore for ios, android and flutter project. - Replaced configuration 'compile' with 'implementation' and updated targetSdkVersion & compileSdkVersion. - Updated kotlin version , build gradle plugin version...
**Updates:** - Updated .gitignore for ios, android and flutter project. - Replaced configuration 'compile' with 'implementation' and updated targetSdkVersion & compileSdkVersion. - Updated kotlin version , build gradle plugin version...
**Updates:** - Updated .gitignore for ios, android and flutter project. - Replaced configuration 'compile' with 'implementation' and updated targetSdkVersion & compileSdkVersion. - Updated kotlin version , build gradle plugin version...
**Updates:** - Updated .gitignore for ios, android and flutter project. - Replaced configuration 'compile' with 'implementation' and updated targetSdkVersion & compileSdkVersion. - Updated kotlin version , build gradle plugin version...
**Updates:** - Updated .gitignore for ios, android and flutter project. - Replaced configuration 'compile' with 'implementation' and updated targetSdkVersion & compileSdkVersion. - Updated kotlin version , build gradle plugin version...
**Updates:** - Updated .gitignore for ios, android and flutter project. - Replaced configuration 'compile' with 'implementation' and updated targetSdkVersion & compileSdkVersion. - Updated kotlin version , build gradle plugin version...
**Updates:** - Updated .gitignore for ios, android and flutter project. - Replaced configuration 'compile' with 'implementation' and updated targetSdkVersion & compileSdkVersion. - Updated kotlin version , build gradle plugin version...
`import 'package:flutter/material.dart'; import 'package:my_flutter_plannets/model/planets.dart'; class PlanetRow extends StatelessWidget { final Planet planet; PlanetRow(this.planet); @override Widget build(BuildContext context) { final planetThumbnail = new Container( margin: new EdgeInsets.symmetric( vertical: 16.0 ), alignment:...
hi, bro I was confused that the hight of planetRow is 120.0 ,less than the hight of planetCard 124.0, but the planetCard is child of planetRow ,what means here? what...
Install new version of Flutter, then: `git clone https://github.com/sergiandreplace/flutter_planets_tutorial.git flutter_planets_tutorial2 ` `flutter create flutter_planets_tutorial ` `copy ./flutter_planets_tutorial2/lib ./flutter_planets_tutorial/lib ` `copy ./flutter_planets_tutorial2/assets ./flutter_planets_tutorial/assets ` `cd /flutter_planets_tutorial/ ` `flutter run ` other...