Perbarui sintaks Dart dan perbaiki opacity warna
- Ganti `Key? key` dengan `super.key` di berbagai tampilan - Gunakan `withAlpha()` sebagai pengganti `withOpacity()` untuk transparansi warna - Lakukan penyesuaian kecil pada tata letak dan styling komponen - Hapus impor yang tidak digunakan - Sederhanakan beberapa bagian kode dashboard
This commit is contained in:
@ -3,7 +3,7 @@ import 'package:get/get.dart';
|
||||
import 'package:penyaluran_app/app/modules/home/controllers/home_controller.dart';
|
||||
|
||||
class HomeView extends GetView<HomeController> {
|
||||
const HomeView({Key? key}) : super(key: key);
|
||||
const HomeView({super.key});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
|
Reference in New Issue
Block a user