feat: profile and transaction page
This commit is contained in:
14
lib/features/profile/view/profile_view.dart
Normal file
14
lib/features/profile/view/profile_view.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import 'package:cims_apps/application/component/custom_app_bar/custom_app_bar.dart';
|
||||
import 'package:cims_apps/core/utils/size_config.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class ProfileView extends StatelessWidget {
|
||||
const ProfileView({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: CustomAppBar(height: SizeConfig.height * .1, title: 'Profile'),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user