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
- Host: GitHub
- URL: https://github.com/blankeos/firebase-flutter
- Owner: Blankeos
- Created: 2023-02-09T06:37:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-09T08:40:07.000Z (over 3 years ago)
- Last Synced: 2025-02-13T08:41:52.822Z (over 1 year ago)
- Language: C++
- Size: 265 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.