| 123456789101112131415161718192021222324 |
- import 'package:flutter/material.dart';
- import 'package:get/get.dart';
- import '../controllers/about_controller.dart';
- class AboutView extends GetView<AboutController> {
- 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),
- ),
- ),
- );
- }
- }
|