p ready
This commit is contained in:
parent
73d7155109
commit
3d6d051bf4
|
|
@ -337,10 +337,15 @@ class _HomeState extends State<Home> with WidgetsBindingObserver {
|
||||||
Widget GameCard({required int index, required List<dynamic> list}) {
|
Widget GameCard({required int index, required List<dynamic> list}) {
|
||||||
return GlassCard(
|
return GlassCard(
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
onTap: () {
|
onTap: () async{
|
||||||
Navigator.of(context).push(MaterialPageRoute(
|
await Navigator.of(context).push(MaterialPageRoute(
|
||||||
builder: (BuildContext context) =>
|
builder: (BuildContext context) =>
|
||||||
GameInfoPage(gameJson: list[index])));
|
GameInfoPage(gameJson: list[index])));
|
||||||
|
|
||||||
|
await DataManager.GrabOnce();
|
||||||
|
setState(() {
|
||||||
|
|
||||||
|
});
|
||||||
},
|
},
|
||||||
child: Container(
|
child: Container(
|
||||||
padding: EdgeInsets.all(12),
|
padding: EdgeInsets.all(12),
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
# In Windows, build-name is used as the major, minor, and patch parts
|
# In Windows, build-name is used as the major, minor, and patch parts
|
||||||
# of the product and file versions while build-number is used as the build suffix.
|
# of the product and file versions while build-number is used as the build suffix.
|
||||||
version: 1.0.3+3
|
version: 1.0.4+4
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=3.0.1 <4.0.0'
|
sdk: '>=3.0.1 <4.0.0'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user