grpc import

This commit is contained in:
2023-12-02 12:26:17 +08:00
parent 9f6f9b2dc4
commit 5f4af52ef2
14 changed files with 319 additions and 10 deletions

View File

@ -147,7 +147,7 @@ class HomeUI extends BaseUI<HomeUIModel> {
? null
: () => model.launchRSI(),
child: Padding(
padding: const EdgeInsets.all(8.0),
padding: const EdgeInsets.all(6),
child: Icon(
model.isCurGameRunning
? FluentIcons.stop_solid
@ -161,7 +161,7 @@ class HomeUI extends BaseUI<HomeUIModel> {
const SizedBox(width: 12),
Button(
child: const Padding(
padding: EdgeInsets.all(8.0),
padding: EdgeInsets.all(6),
child: Icon(FluentIcons.folder_open),
),
onPressed: () => model.openDir(model.scInstalledPath)),