Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
iampawan committed May 21, 2024
1 parent fa181f0 commit 9c5fa96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/lib/pages/home_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class HomePage extends StatelessWidget {
builder: (_, store, status) => switch (status) {
VxStatus.loading => 'loading...',
_ => store.user.name.isNotEmpty
? 'username: ${store.user.name}'
? 'Username: ${store.user.name}'
: 'no data',
}
.text
Expand Down
2 changes: 1 addition & 1 deletion example/lib/pages/profile_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class ProfilePage extends StatelessWidget {
VxBuilder<BaseStore>(
mutations: const {GetUser, UpdateName},
builder: (context, store, status) {
return 'current name: ${store.user.name}'
return 'Current name: ${store.user.name}'
.text
.xl2
.makeCentered()
Expand Down

0 comments on commit 9c5fa96

Please sign in to comment.