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