finnow/flutter_app/lib/pages/profile_page.dart

17 lines
397 B
Dart
Raw Permalink Normal View History

import 'package:finnow_app/api/profile.dart';
import 'package:flutter/material.dart';
class ProfilePage extends StatelessWidget {
final Profile profile;
const ProfilePage(this.profile, {super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(
padding: const EdgeInsets.all(10),
child: Text(profile.name)
)
);
}
}