On non-desktop, split the two input sections for readability
This commit is contained in:
parent
db7130aca5
commit
41b32923dd
1 changed files with 35 additions and 12 deletions
|
@ -141,6 +141,29 @@ class BugVaultLoadPageState extends State<BugVaultLoadPage> {
|
|||
"The URL to where the instance of BugVault is running",
|
||||
),
|
||||
),
|
||||
if (Platform.isAndroid || Platform.isIOS)
|
||||
Column(
|
||||
children: [
|
||||
Row(
|
||||
children: [
|
||||
Text("HOST / FQDN :"),
|
||||
Expanded(child: highlightTextField(URL_CONTROLLER)),
|
||||
],
|
||||
),
|
||||
Row(
|
||||
children: [
|
||||
Text("PORT :"),
|
||||
Expanded(
|
||||
child: highlightTextField(
|
||||
PORT_CONTROLLER,
|
||||
keyboardType: TextInputType.number,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
],
|
||||
)
|
||||
else
|
||||
Row(
|
||||
children: [
|
||||
Text("HOST / FQDN :"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue