feat: merge to fluent_ui: ^4.8.6

This commit is contained in:
2024-03-14 19:54:37 +08:00
parent 4a4eb9f701
commit 8426570ced
3 changed files with 7 additions and 2 deletions

View File

@ -127,6 +127,7 @@ class HomeUI extends HookConsumerWidget {
Expanded(
child: ComboBox<String>(
value: homeState.scInstalledPath,
isExpanded: true,
items: [
const ComboBoxItem(
value: "not_install",
@ -135,7 +136,9 @@ class HomeUI extends HookConsumerWidget {
for (final path in homeState.scInstallPaths)
ComboBoxItem(
value: path,
child: Text(path),
child: Row(
children: [Text(path)],
),
)
],
onChanged: model.onChangeInstallPath,

View File

@ -196,6 +196,7 @@ class ToolsUI extends HookConsumerWidget {
child: SizedBox(
height: 36,
child: ComboBox<String>(
isExpanded: true,
value: state.scInstalledPath,
items: [
for (final path in state.scInstallPaths)
@ -233,6 +234,7 @@ class ToolsUI extends HookConsumerWidget {
child: SizedBox(
height: 36,
child: ComboBox<String>(
isExpanded: true,
value: state.rsiLauncherInstalledPath,
items: [
for (final path in state.rsiLauncherInstallPaths)