17 lines
397 B
Dart
17 lines
397 B
Dart
|
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)
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
}
|