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
Goddchen
2020-10-01 09:03:41 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
b3b31c293725f0b26fcb1b225cbddafaea5bf281
b3b31c29
1 parent
6abe15ea
Fix some typos in documentation
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
documentation/en_US/route_management.md
documentation/en_US/state_management.md
documentation/en_US/route_management.md
View file @
b3b31c2
...
...
@@ -219,7 +219,7 @@ void main() {
Send data on route name
```
dart
Get
.
toNamed
(
"/
second
/34954"
);
Get
.
toNamed
(
"/
profile
/34954"
);
```
On second screen take the data by parameter
...
...
documentation/en_US/state_management.md
View file @
b3b31c2
...
...
@@ -357,7 +357,7 @@ class User() {
// on the controller file
final
user
=
User
().
obs
;
// when you need to update the user variable:
user
.
update
(
(
user
)
{
// this parameter is the class itself t
ah
t you want to update
user
.
update
(
(
user
)
{
// this parameter is the class itself t
ha
t you want to update
user
.
name
=
'Jonny'
;
user
.
age
=
18
;
});
...
...
Please
register
or
login
to post a comment