Add more data entries

This commit is contained in:
zontreck 2025-03-22 18:48:35 -07:00
parent c5cc8ed220
commit 4cfd3612fe
10 changed files with 33 additions and 2 deletions

View file

@ -1,5 +1,6 @@
import 'package:flutter/material.dart';
import 'package:libacflutter/Constants.dart';
import 'package:pokedex/Consts.dart';
import 'package:pokedex/Session.dart';
import 'package:pokedex/pokemon.dart';
@ -57,6 +58,24 @@ class _HomeState extends State<Home> {
),
],
),
drawer: Drawer(
elevation: 50,
child: Column(
children: [
DrawerHeader(
child: Column(
children: [
Text("PokeDex", style: TextStyle(fontSize: 24)),
Text(
"Version: ${Constants.VERSION}",
style: TextStyle(fontSize: 24),
),
],
),
),
],
),
),
body: Padding(
padding: EdgeInsets.all(8),
child: GridView.builder(