feat: about info card and flutter convention style

This commit is contained in:
Aunali321 2022-08-19 18:34:40 +05:30
parent 614a694a77
commit e373aef2d9
11 changed files with 119 additions and 28 deletions

View file

@ -48,7 +48,7 @@ class PatchSelectorCard extends StatelessWidget {
'patchSelectorCard.widgetSubtitle',
child: Text(
'',
style: robotoTextStyle,
style: kRobotoTextStyle,
),
)
: locator<PatcherViewModel>().selectedPatches.isEmpty
@ -56,12 +56,12 @@ class PatchSelectorCard extends StatelessWidget {
'patchSelectorCard.widgetEmptySubtitle',
child: Text(
'',
style: robotoTextStyle,
style: kRobotoTextStyle,
),
)
: Text(
_getPatchesSelection(),
style: robotoTextStyle,
style: kRobotoTextStyle,
),
],
),