1
0
Fork 0
mirror of https://github.com/Nioux/AideDeJeu.git synced 2025-10-30 06:56:10 +00:00
This commit is contained in:
Yan Maniez 2020-03-12 17:05:53 +01:00
parent b758deab1a
commit 765d65afd4
6 changed files with 60 additions and 224 deletions

View file

@ -23,7 +23,7 @@ class _LibraryPageState extends State<LibraryPage> {
setState(() {
this.item = item;
if (item is FilteredItems) {
this.filters = (item as FilteredItems).toFilterList();
this.filters = item.toFilterList();
} else {
this.filters = null;
}
@ -35,9 +35,9 @@ class _LibraryPageState extends State<LibraryPage> {
}
String markdown = "";
Item item = null;
Item item;
MarkdownStyleSheet styleSheet;
List<Filter> filters = null;
List<Filter> filters;
@override
void initState() {