about_view.dart 530 B

123456789101112131415161718192021222324
  1. import 'package:flutter/material.dart';
  2. import 'package:get/get.dart';
  3. import '../controllers/about_controller.dart';
  4. class AboutView extends GetView<AboutController> {
  5. const AboutView({super.key});
  6. @override
  7. Widget build(BuildContext context) {
  8. return Scaffold(
  9. appBar: AppBar(
  10. title: const Text('AboutView'),
  11. centerTitle: true,
  12. ),
  13. body: const Center(
  14. child: Text(
  15. 'AboutView is working',
  16. style: TextStyle(fontSize: 20),
  17. ),
  18. ),
  19. );
  20. }
  21. }