feat(App): update Finlytic Flutter app UI and blocs

This commit is contained in:
2026-08-09 21:01:46 +02:00
parent e7427b7464
commit a708d2977c
591 changed files with 1095105 additions and 0 deletions
@@ -0,0 +1,17 @@
import 'package:equatable/equatable.dart';
abstract class FavoritesEvent extends Equatable {
const FavoritesEvent();
@override
List<Object?> get props => [];
}
class LoadFavorites extends FavoritesEvent {
final List<String> symbols;
const LoadFavorites(this.symbols);
@override
List<Object?> get props => [symbols];
}