Update home_view.dart

This commit is contained in:
Benjamin Halko 2023-10-21 13:12:35 -07:00
parent 527951397f
commit 18885a1433
No known key found for this signature in database
GPG Key ID: 790C70040EB331A0
1 changed files with 10 additions and 10 deletions

View File

@ -51,16 +51,6 @@ class HomeView extends StatelessWidget {
const SizedBox(height: 10),
LatestCommitCard(model: model, parentContext: context),
const SizedBox(height: 23),
I18nText(
'homeView.patchedSubtitle',
child: Text(
'',
style: Theme.of(context).textTheme.titleLarge,
),
),
const SizedBox(height: 10),
InstalledAppsCard(),
const SizedBox(height: 10),
I18nText(
'homeView.patchHistorySubtitle',
child: Text(
@ -70,6 +60,16 @@ class HomeView extends StatelessWidget {
),
const SizedBox(height: 10),
PatchHistoryCard(),
const SizedBox(height: 10),
I18nText(
'homeView.patchedSubtitle',
child: Text(
'',
style: Theme.of(context).textTheme.titleLarge,
),
),
const SizedBox(height: 10),
InstalledAppsCard(),
],
),
),