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-08-05 16:36:54 -0300
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
GitHub
2020-08-05 16:36:54 -0300
Commit
ed6904a9d67dce1cfdf0f7e160f5886e98a8d5e1
ed6904a9
2 parents
c0662e8e
e0c9fcb2
Merge pull request #451 from gokul1630/master
Fix Typo
Hide 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 @
ed6904a
...
...
@@ -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 @
ed6904a
...
...
@@ -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 @
ed6904a
...
...
@@ -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