mirror of
https://github.com/gabehf/Fladder.git
synced 2026-03-14 09:46:01 -07:00
chore: Move to different iconsax library (#301)
Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
This commit is contained in:
parent
5b3d5b8900
commit
5578076fdb
71 changed files with 349 additions and 346 deletions
|
|
@ -2,7 +2,7 @@ import 'package:flutter/foundation.dart';
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
import 'package:auto_route/auto_route.dart';
|
||||
import 'package:ficonsax/ficonsax.dart';
|
||||
import 'package:iconsax_plus/iconsax_plus.dart';
|
||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||
|
||||
import 'package:fladder/models/collection_types.dart';
|
||||
|
|
@ -54,7 +54,7 @@ class NestedNavigationDrawer extends ConsumerWidget {
|
|||
),
|
||||
IconButton(
|
||||
onPressed: () => toggleExpanded(false),
|
||||
icon: const Icon(IconsaxOutline.menu),
|
||||
icon: const Icon(IconsaxPlusLinear.menu),
|
||||
),
|
||||
],
|
||||
),
|
||||
|
|
@ -96,7 +96,7 @@ class NestedNavigationDrawer extends ConsumerWidget {
|
|||
actions: [
|
||||
ItemActionButton(
|
||||
label: Text(context.localized.scanLibrary),
|
||||
icon: const Icon(IconsaxOutline.refresh),
|
||||
icon: const Icon(IconsaxPlusLinear.refresh),
|
||||
action: () => showRefreshPopup(context, library.id, library.name),
|
||||
),
|
||||
],
|
||||
|
|
@ -113,7 +113,7 @@ class NestedNavigationDrawer extends ConsumerWidget {
|
|||
offset: const Offset(-8, 0),
|
||||
child: DrawerListButton(
|
||||
label: context.localized.settings,
|
||||
selectedIcon: const Icon(IconsaxBold.setting_3),
|
||||
selectedIcon: const Icon(IconsaxPlusBold.setting_3),
|
||||
selected: currentLocation.contains(const SettingsRoute().routeName),
|
||||
icon: const SizedBox(width: 35, height: 35, child: SettingsUserIcon()),
|
||||
onPressed: () {
|
||||
|
|
@ -132,8 +132,8 @@ class NestedNavigationDrawer extends ConsumerWidget {
|
|||
else
|
||||
DrawerListButton(
|
||||
label: context.localized.settings,
|
||||
selectedIcon: const Icon(IconsaxBold.setting_2),
|
||||
icon: const Icon(IconsaxOutline.setting_2),
|
||||
selectedIcon: const Icon(IconsaxPlusBold.setting_2),
|
||||
icon: const Icon(IconsaxPlusLinear.setting_2),
|
||||
selected: currentLocation.contains(const SettingsRoute().routeName),
|
||||
onPressed: () {
|
||||
switch (AdaptiveLayout.layoutModeOf(context)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue