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-02-27 17:24:45 +01:00
parent 025077bee7
commit 60d83137be
7 changed files with 421 additions and 308 deletions

View file

@ -1,3 +1,5 @@
import 'package:flutter/material.dart';
class Item {
String Id;
String RootId;
@ -127,7 +129,12 @@ class Filter {
String name;
FilterType type;
List<String> values;
Filter({this.name, this.type, this.values});
Set<String> selectedValues = Set<String>();
RangeValues rangeValues;
Filter({this.name, this.type, this.values}) {
rangeValues = RangeValues(0, values.length.toDouble() - 1);
}
}
class MonsterItems extends FilteredItems {