- created wallet balance block, wallet item and kid line chart widgets. - restructured onboarding, signup and device signup screens into layouts and main screens. - updated signup and kid wallet screens to 17/11 design.
12 lines
296 B
Dart
12 lines
296 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:go_router/go_router.dart';
|
|
import 'package:profile/profile.dart';
|
|
|
|
class ProfileBuilder {
|
|
const ProfileBuilder();
|
|
|
|
Page<void> buildPage(BuildContext context, GoRouterState state) {
|
|
return MaterialPage(child: ProfileScreen());
|
|
}
|
|
}
|