mockup and List View in a Modern Design

This commit is contained in:
2026-01-14 14:15:37 +01:00
parent cc849be7c4
commit c065748225
10 changed files with 841 additions and 15 deletions

View File

@@ -1,6 +1,7 @@
import 'package:get/get.dart';
import '../pages/home_view.dart';
import 'sample_bindings.dart';
import '../pages/home_view.dart';
import '../pages/list_view.dart';
@@ -13,6 +14,11 @@ class SampleRouts {
page: () => const HomePage(),
binding: sampleBindings,
),
GetPage(
name: ListPage.namedRoute,
page: () => const ListPage(),
binding: sampleBindings,
),
];