mirror of
https://github.com/Nioux/AideDeJeu.git
synced 2025-10-30 06:56:10 +00:00
Events
This commit is contained in:
parent
025077bee7
commit
60d83137be
7 changed files with 421 additions and 308 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue