patch for rustore api changes

This commit is contained in:
Michael 2025-04-26 13:00:37 +03:00
parent cdf2fd5b7a
commit 33d3a78bcc
2 changed files with 3 additions and 3 deletions

View file

@ -116,11 +116,11 @@ class _AppPageState extends State<AppPage> {
bottomText: "minSdkVersion", bottomText: "minSdkVersion",
), ),
_InfoCard( _InfoCard(
topText: _appInfo?["ageLegal"], topText: _appInfo?["ageRestriction"]["category"] ?? "?",
bottomText: "Возраст", bottomText: "Возраст",
), ),
_InfoCard( _InfoCard(
topText: _appInfo?["category"], topText: _appInfo?["categories"][0] ?? "?",
bottomText: "Категория", bottomText: "Категория",
) )
], ],

View file

@ -86,7 +86,7 @@ class _SearchPageState extends State<SearchPage> {
borderRadius: BorderRadius.circular(15), borderRadius: BorderRadius.circular(15),
child: Image.network( child: Image.network(
width: 60, width: 60,
appInfo["icon"] appInfo["iconUrl"]
), ),
), ),
const SizedBox(width: 15,), const SizedBox(width: 15,),