Skip to content

Commit 9c5fa96

Browse files
committed
fixes
1 parent fa181f0 commit 9c5fa96

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: example/lib/pages/home_page.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class HomePage extends StatelessWidget {
3030
builder: (_, store, status) => switch (status) {
3131
VxStatus.loading => 'loading...',
3232
_ => store.user.name.isNotEmpty
33-
? 'username: ${store.user.name}'
33+
? 'Username: ${store.user.name}'
3434
: 'no data',
3535
}
3636
.text

Diff for: example/lib/pages/profile_page.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ProfilePage extends StatelessWidget {
1717
VxBuilder<BaseStore>(
1818
mutations: const {GetUser, UpdateName},
1919
builder: (context, store, status) {
20-
return 'current name: ${store.user.name}'
20+
return 'Current name: ${store.user.name}'
2121
.text
2222
.xl2
2323
.makeCentered()

0 commit comments

Comments
 (0)