| 123456789101112131415161718192021222324 |
- import 'package:flutter/material.dart';
- import 'package:get/get.dart';
- import '../controllers/signup_controller.dart';
- class SignupView extends GetView<SignupController> {
- const SignupView({super.key});
- @override
- Widget build(BuildContext context) {
- return Scaffold(
- appBar: AppBar(
- title: const Text('SignupView'),
- centerTitle: true,
- ),
- body: const Center(
- child: Text(
- 'SignupView is working',
- style: TextStyle(fontSize: 20),
- ),
- ),
- );
- }
- }
|