https://github.com/silentcatd/timer_app
Timer App follow bloc architecture tutorial
https://github.com/silentcatd/timer_app
Last synced: about 2 months ago
JSON representation
Timer App follow bloc architecture tutorial
- Host: GitHub
- URL: https://github.com/silentcatd/timer_app
- Owner: SilentCatD
- Created: 2022-01-12T03:38:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-12T03:39:24.000Z (over 3 years ago)
- Last Synced: 2025-04-06T23:11:38.933Z (about 2 months ago)
- Language: Dart
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# timer_app
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://flutter.dev/docs/get-started/codelab)
- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)For help getting started with Flutter, view our
[online documentation](https://flutter.dev/docs), which offers tutorials,
samples, guidance on mobile development, and a full API reference.# Key Topics
- Observe state changes with BlocObserver.
- BlocProvider, Flutter widget which provides a bloc to its children.
- BlocBuilder, Flutter widget that handles building the widget in response to new states.
- Prevent unnecessary rebuilds with Equatable.
- Learn to use StreamSubscription in a Bloc.
- Prevent unnecessary rebuilds with buildWhen