mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-23 23:39:12 +00:00
Added warning message https connections
This commit is contained in:
parent
6acc510583
commit
d38b895076
1 changed files with 15 additions and 0 deletions
|
@ -395,6 +395,21 @@ class _AddServerModalState extends State<AddServerModal> {
|
|||
horizontal: 24,
|
||||
),
|
||||
),
|
||||
if (connectionType == ConnectionType.https) Card(
|
||||
margin: const EdgeInsets.only(
|
||||
top: 16, left: 24, right: 24
|
||||
),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(16),
|
||||
child: Row(
|
||||
children: [
|
||||
const Icon(Icons.info_rounded),
|
||||
const SizedBox(width: 16),
|
||||
Flexible(child: Text(AppLocalizations.of(context)!.sslWarning))
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
const SizedBox(height: 30),
|
||||
FormTextField(
|
||||
label: AppLocalizations.of(context)!.ipDomain,
|
||||
|
|
Loading…
Add table
Reference in a new issue