chore: Move to different iconsax library (#301)

Co-authored-by: PartyDonut <PartyDonut@users.noreply.github.com>
This commit is contained in:
PartyDonut 2025-04-05 23:36:48 +02:00 committed by GitHub
parent 5b3d5b8900
commit 5578076fdb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
71 changed files with 349 additions and 346 deletions

View file

@ -3,7 +3,7 @@ import 'dart:async';
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/account_model.dart';
@ -90,12 +90,12 @@ class _LoginPageState extends ConsumerState<LoginScreen> {
if (!AdaptiveLayout.of(context).isDesktop)
FloatingActionButton(
key: const Key("edit_button"),
child: const Icon(IconsaxOutline.edit_2),
child: const Icon(IconsaxPlusLinear.edit_2),
onPressed: () => setState(() => editingUsers = !editingUsers),
),
FloatingActionButton(
key: const Key("new_button"),
child: const Icon(IconsaxOutline.add_square),
child: const Icon(IconsaxPlusLinear.add_square),
onPressed: startAddingNewUser,
),
].addInBetween(const SizedBox(width: 16)),
@ -287,7 +287,7 @@ class _LoginPageState extends ConsumerState<LoginScreen> {
ref.read(authProvider.notifier).setServer("");
},
icon: const Icon(
IconsaxOutline.arrow_left_2,
IconsaxPlusLinear.arrow_left_2,
),
),
),
@ -315,7 +315,7 @@ class _LoginPageState extends ConsumerState<LoginScreen> {
child: IconButton.filled(
onPressed: () => retrieveListOfUsers(),
icon: const Icon(
IconsaxOutline.refresh,
IconsaxPlusLinear.refresh,
),
),
),
@ -381,7 +381,7 @@ class _LoginPageState extends ConsumerState<LoginScreen> {
children: [
Text(context.localized.login),
const SizedBox(width: 8),
const Icon(IconsaxBold.send_1),
const Icon(IconsaxPlusBold.send_1),
],
),
),