mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-07-31 21:00:15 +02:00
Make appId Assignable only once
This commit is contained in:
@@ -538,6 +538,22 @@ class AddAppPageState extends State<AddAppPage> {
|
||||
});
|
||||
}
|
||||
}),
|
||||
if (pickedSource != null)
|
||||
GeneratedForm(
|
||||
key: const Key('appId'),
|
||||
items: [
|
||||
[
|
||||
GeneratedFormTextField('appId',
|
||||
label: tr('appId'), required: false),
|
||||
]
|
||||
],
|
||||
onValueChanges: (values, valid, isBuilding) {
|
||||
if (!isBuilding) {
|
||||
setState(() {
|
||||
additionalSettings['appId'] = values['appId'];
|
||||
});
|
||||
}
|
||||
}),
|
||||
],
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user