-
Notifications
You must be signed in to change notification settings - Fork 0
/
counter_bloc.txt
111 lines (88 loc) · 2.38 KB
/
counter_bloc.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
MAIN CLASS
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'bloc/counter_bloc.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: BlocProvider(
create: (context) => CounterBloc(),
child: MyHomePage(title: 'Flutter Demo Home Page'),
),
);
}
}
class MyHomePage extends StatelessWidget {
MyHomePage({super.key, required this.title});
final String title;
late CounterBloc counterBloc;
void _incrementCounter() {
counterBloc.add(IncrementCounterEvent());
}
void _decrementCounter() {
counterBloc.add(DecrementCounterEvent());
}
@override
Widget build(BuildContext context) {
counterBloc = context.read<CounterBloc>();
return Scaffold(
appBar: AppBar(
title: Text(title),
),
body: Center(
child: BlocBuilder<CounterBloc, int>(
bloc: counterBloc,
builder: (context, state) => Text(state.toString()),
)),
floatingActionButton: ButtonBar(
children: [
FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: const Icon(Icons.add),
),
FloatingActionButton(
onPressed: _decrementCounter,
tooltip: 'Decrement',
child: const Icon(Icons.remove),
),
],
));
}
}
COUNTER BLOC
import 'package:bloc/bloc.dart';
import 'package:flutter/rendering.dart';
import 'package:meta/meta.dart';
part 'counter_event.dart';
part 'counter_state.dart';
class CounterBloc extends Bloc<CounterEvent, int> {
CounterBloc() : super(0) {
on<IncrementCounterEvent>((event, emit) {
emit(state + 1);
});
on<DecrementCounterEvent>((event, emit) => emit(state - 1));
}
}
COUNTER EVENTS
part of 'counter_bloc.dart';
@immutable
abstract class CounterEvent {}
@immutable
class IncrementCounterEvent extends CounterEvent {}
@immutable
class DecrementCounterEvent extends CounterEvent {}
COUTNER EVENTS
part of 'counter_bloc.dart';
@immutable
abstract class CounterState {}
class CounterInitial extends CounterState {}