mirror of
https://ghfast.top/https://github.com/StarCitizenToolBox/app.git
synced 2025-06-28 17:14:48 +08:00
feat: merge to fluent_ui: ^4.8.6
This commit is contained in:
@ -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,
|
||||
|
Reference in New Issue
Block a user