aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/res/layout/config_naming_dialog_fragment.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/config_naming_dialog_fragment.xml')
-rw-r--r--app/src/main/res/layout/config_naming_dialog_fragment.xml33
1 files changed, 0 insertions, 33 deletions
diff --git a/app/src/main/res/layout/config_naming_dialog_fragment.xml b/app/src/main/res/layout/config_naming_dialog_fragment.xml
deleted file mode 100644
index a7017804..00000000
--- a/app/src/main/res/layout/config_naming_dialog_fragment.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto">
-
- <data>
-
- <import type="com.wireguard.android.widget.NameInputFilter" />
- </data>
-
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:padding="16dp">
-
- <com.google.android.material.textfield.TextInputLayout
- android:id="@+id/tunnel_name_text_layout"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
-
- <EditText
- android:id="@+id/tunnel_name_text"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:hint="@string/tunnel_name"
- android:inputType="textNoSuggestions|textVisiblePassword"
- app:filter="@{NameInputFilter.newInstance()}" />
-
- </com.google.android.material.textfield.TextInputLayout>
-
- </FrameLayout>
-
-
-</layout>