feat: new pages and with binding ...

This commit is contained in:
2025-05-21 09:04:21 +03:30
parent 7f72f2c70d
commit ed75da4eaa
10 changed files with 84 additions and 13 deletions

View File

@@ -0,0 +1,5 @@
import 'package:rasadyar_core/core.dart';
class ProfileLogic extends GetxController {
}

View File

@@ -0,0 +1,13 @@
import 'package:flutter/material.dart';
import 'package:rasadyar_core/core.dart';
import 'logic.dart';
class ProfilePage extends GetView<ProfileLogic> {
ProfilePage({super.key});
@override
Widget build(BuildContext context) {
return Container();
}
}