Files
sf-app-platform/modules/profile/lib/src/profile_builder.dart
aitorarana 8201bff0a7 - created snackbar, step indicator, money text, text field and progress bar components.
- 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.
2025-11-21 15:28:46 +01:00

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());
}
}