An open API service indexing awesome lists of open source software.

https://github.com/blankeos/firebase-flutter

🐔 Practicing Flutter for my Internship @ SV
https://github.com/blankeos/firebase-flutter

Last synced: about 1 year ago
JSON representation

🐔 Practicing Flutter for my Internship @ SV

Awesome Lists containing this project

README

          

Channels to watch:

```
Flutter
Fireship
Joannes Mike
The Flutter Way
Rifqi Eka
```

# Notes:

### Making Stateful Widgets

These are widgets with state

```dart
// Snippet: stf
// _YourState and State are interchangeable in the createState return type

class YourWidget extends StatefulWidget {
@override
_YourState createState() => _YourState();
}

class _YourState extends State {
@override
Widget build(BuildContext context) {
return Container(child: Text('Stuff'));
}
}
```

### Making Stateless Widgets

These are widgets that don't need state.

```dart
// Snippet: stles
class YourWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Container(child: Text("Home"));
}
}
```

# sven_mobile

A new Flutter project.

## Getting Started

This project is a starting point for a Flutter application.

A few resources to get you started if this is your first Flutter project:

- [Lab: Write your first Flutter app](https://docs.flutter.dev/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://docs.flutter.dev/cookbook)

For help getting started with Flutter development, view the
[online documentation](https://docs.flutter.dev/), which offers tutorials,
samples, guidance on mobile development, and a full API reference.