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
Kai Oswald
2020-09-01 11:33:56 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Committed by
GitHub
2020-09-01 11:33:56 +0200
Commit
9cb9e5a6727607f0986f9dd7c91a2873bf081864
9cb9e5a6
1 parent
a086da17
Fix missing .obs for list and map
Show 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 @
9cb9e5a
...
...
@@ -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