Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jonny Borges
2020-09-01 08:33:19 -0300
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
GitHub
2020-09-01 08:33:19 -0300
Commit
541b9e79dbe06ddcc6781dbbcb39feb1d556c6c2
541b9e79
2 parents
9117c150
9cb9e5a6
Merge pull request #543 from kai-oswald/patch-1
Fix missing .obs for list and map
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
docs/en_US/state_management.md
docs/en_US/state_management.md
View file @
541b9e7
...
...
@@ -130,8 +130,8 @@ final isLogged = false.obs;
final
count
=
0
.
obs
;
final
balance
=
0.0
.
obs
;
final
number
=
0
.
obs
;
final
items
=
<
String
>[];
final
myMap
=
<
String
,
int
>{};
final
items
=
<
String
>[].
obs
;
final
myMap
=
<
String
,
int
>{}.
obs
;
// Custom classes - it can be any class, literally
final
user
=
User
().
obs
;
...
...
Please
register
or
login
to post a comment