Daily sign

This commit is contained in:
2024-09-02 23:11:40 +08:00
parent 597a8a802a
commit 4e4e551e2f
13 changed files with 424 additions and 45 deletions

View File

@ -60,7 +60,7 @@ class LinkExpansion extends StatelessWidget {
return const SizedBox();
}
final LinkExpandController expandController = Get.find();
final LinkExpandProvider expandController = Get.find();
return Wrap(
children: matches.map((x) {

View File

@ -4,9 +4,14 @@ import 'package:get/utils.dart';
abstract class AppNavigation {
static List<AppNavigationDestination> destinations = [
AppNavigationDestination(
icon: Icons.home,
label: 'home'.tr,
page: 'home',
icon: Icons.dashboard,
label: 'dashboard'.tr,
page: 'dashboard',
),
AppNavigationDestination(
icon: Icons.newspaper,
label: 'feed'.tr,
page: 'feed',
),
AppNavigationDestination(
icon: Icons.workspaces,