Add more entries
This commit is contained in:
parent
6a1a065953
commit
8633d8952e
48 changed files with 323 additions and 96 deletions
|
@ -98,7 +98,7 @@ class _HomeState extends State<Home> {
|
|||
height: Constants.isMobile ? 64 : 198,
|
||||
),
|
||||
Text(
|
||||
Pokemon.values[index].name,
|
||||
Pokemon.values[index].printName(proper: true),
|
||||
style: TextStyle(
|
||||
fontSize: Constants.isMobile ? 16 : 32,
|
||||
color: Colors.black,
|
||||
|
@ -146,7 +146,7 @@ class _DexEntryState extends State<DexEntry> {
|
|||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text(_pkmn.name),
|
||||
title: Text(_pkmn.printName(proper: true)),
|
||||
backgroundColor:
|
||||
SessionData.darkMode
|
||||
? LibACFlutterConstants.TITLEBAR_COLOR
|
||||
|
@ -160,7 +160,10 @@ class _DexEntryState extends State<DexEntry> {
|
|||
children: [
|
||||
Center(child: Image.asset(_pkmn.toDexPath())),
|
||||
Center(
|
||||
child: Text("ID: ${_pkmn.id}", style: TextStyle(fontSize: 24)),
|
||||
child: Text(
|
||||
"ID: ${_pkmn.pokeDexID}",
|
||||
style: TextStyle(fontSize: 24),
|
||||
),
|
||||
),
|
||||
Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue