mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-26 00:36:09 +00:00
Added url preview when adding server
This commit is contained in:
parent
2716ed17c1
commit
f10f3be28a
1 changed files with 23 additions and 0 deletions
|
@ -438,6 +438,29 @@ class _AddServerModalState extends State<AddServerModal> {
|
||||||
),
|
),
|
||||||
body: ListView(
|
body: ListView(
|
||||||
children: [
|
children: [
|
||||||
|
Container(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 10),
|
||||||
|
margin: const EdgeInsets.only(
|
||||||
|
top: 30,
|
||||||
|
left: 20,
|
||||||
|
right: 20
|
||||||
|
),
|
||||||
|
decoration: BoxDecoration(
|
||||||
|
color: Theme.of(context).primaryColor.withOpacity(0.05),
|
||||||
|
borderRadius: BorderRadius.circular(30),
|
||||||
|
border: Border.all(
|
||||||
|
color: Theme.of(context).primaryColor
|
||||||
|
)
|
||||||
|
),
|
||||||
|
child: Text(
|
||||||
|
"$connectionType://${ipDomainController.text}${pathController.text}${portController.text != '' ? ':${portController.text}' : ""}",
|
||||||
|
textAlign: TextAlign.center,
|
||||||
|
style: TextStyle(
|
||||||
|
color: Theme.of(context).primaryColor,
|
||||||
|
fontWeight: FontWeight.w500
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
sectionLabel(AppLocalizations.of(context)!.general),
|
sectionLabel(AppLocalizations.of(context)!.general),
|
||||||
textField(
|
textField(
|
||||||
label: AppLocalizations.of(context)!.name,
|
label: AppLocalizations.of(context)!.name,
|
||||||
|
|
Loading…
Add table
Reference in a new issue