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

@ -4,7 +4,7 @@ import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:ficonsax/ficonsax.dart';
import 'package:iconsax_plus/iconsax_plus.dart';
import 'package:freezed_annotation/freezed_annotation.dart';
import 'package:fladder/jellyfin/jellyfin_open_api.swagger.dart';
@ -85,13 +85,13 @@ enum Authentication {
IconData get icon {
switch (this) {
case Authentication.none:
return IconsaxBold.arrow_bottom;
return IconsaxPlusBold.arrow_bottom;
case Authentication.autoLogin:
return IconsaxOutline.login_1;
return IconsaxPlusLinear.login_1;
case Authentication.biometrics:
return IconsaxOutline.finger_scan;
return IconsaxPlusLinear.finger_scan;
case Authentication.passcode:
return IconsaxOutline.password_check;
return IconsaxPlusLinear.password_check;
}
}