add login and input

This commit is contained in:
2025-10-22 21:22:59 +02:00
parent 2f844fcaef
commit ee655328e6
9 changed files with 344 additions and 34 deletions

View File

@@ -0,0 +1,14 @@
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import '../../controllers/input_controller.dart';
class InputPage extends GetView<InputController> {
const InputPage({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Container(),
);
}
}