Initial version of the descriptions and Locations provider

This commit is contained in:
zontreck 2025-03-25 22:22:41 -07:00
parent e5901e62bb
commit 18641d5606
7 changed files with 604 additions and 60 deletions

View file

@ -30,6 +30,19 @@ class _filterPage extends State<FilterPage> {
"The PokeDex's filters will allow you to customize what Generations are shown in the app.\n\n** WARNING **\nThis will prevent evolutions from showing up if the Pokemon resides in a future generation.\n\nThe dex entries will also not show the evolution conditions, or catch conditions for disabled generations.",
style: TextStyle(fontSize: 24),
),
SwitchListTile(
value: SessionData.enableDescription,
onChanged: (X) {
SessionData.enableDescription =
!SessionData.enableDescription;
setState(() {});
},
title: Text("Enable Dex Descriptions"),
subtitle: Text(
"Enables or disables the pokedex descriptions for the pokemon",
),
),
SizedBox(height: 50),
SwitchListTile(
value: (SessionData.highest >= 1),
title: Text("Generation 1"),