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
gokul1630
2020-08-06 00:46:16 +0530
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e0c9fcb2e519514def0ee540884b468190e00e79
e0c9fcb2
1 parent
c0662e8e
Fix Typo
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
docs/en_US/state_management.md
docs/es_ES/state_management.md
docs/pt_BR/state_management.md
docs/en_US/state_management.md
View file @
e0c9fcb
...
...
@@ -265,7 +265,7 @@ final list = List<User>().obs;
```
dart
Text
(
title
.
value
),
// String need to have .value in front of it
ListView
.
builder
(
itemCount:
list
.
leng
ht
// lists don't need it
itemCount:
list
.
leng
th
// lists don't need it
)
```
...
...
docs/es_ES/state_management.md
View file @
e0c9fcb
...
...
@@ -516,7 +516,7 @@ final list = List<User>().obs;
```
dart
ListView
.
builder
(
itemCount:
list
.
leng
ht
itemCount:
list
.
leng
th
)
```
...
...
docs/pt_BR/state_management.md
View file @
e0c9fcb
...
...
@@ -416,7 +416,7 @@ Você também não precisa usar `.value` com listas, a api dart nos permitiu rem
final
list
=
List
<
Usuario
>().
obs
;
ListView
.
builder
(
itemCount:
list
.
leng
ht
itemCount:
list
.
leng
th
)
```
...
...
Please
register
or
login
to post a comment