feat:mai page done
This commit is contained in:
21
lib/feature/profile/presentation/pages/profile_page.dart
Normal file
21
lib/feature/profile/presentation/pages/profile_page.dart
Normal file
@@ -0,0 +1,21 @@
|
||||
import '../../../../../food_delivery_client.dart';
|
||||
|
||||
class ProfilePage extends StatelessWidget {
|
||||
const ProfilePage({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
body: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
children: [
|
||||
Text("Home"),
|
||||
GradientSwitch(value:false, onChanged: (value) {
|
||||
print(value);
|
||||
}),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user