diff options
Diffstat (limited to 'mobile/build/fluttertoast/intermediates/packaged_res/debug')
3 files changed, 45 insertions, 0 deletions
diff --git a/mobile/build/fluttertoast/intermediates/packaged_res/debug/drawable/corner.xml b/mobile/build/fluttertoast/intermediates/packaged_res/debug/drawable/corner.xml new file mode 100644 index 0000000..77d2c33 --- /dev/null +++ b/mobile/build/fluttertoast/intermediates/packaged_res/debug/drawable/corner.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android">
+ <corners android:bottomRightRadius="40dp"
+ android:bottomLeftRadius="40dp"
+ android:topLeftRadius="40dp"
+ android:topRightRadius="40dp" />
+</shape>
\ No newline at end of file diff --git a/mobile/build/fluttertoast/intermediates/packaged_res/debug/drawable/toast_bg.xml b/mobile/build/fluttertoast/intermediates/packaged_res/debug/drawable/toast_bg.xml new file mode 100644 index 0000000..8529a3f --- /dev/null +++ b/mobile/build/fluttertoast/intermediates/packaged_res/debug/drawable/toast_bg.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="utf-8"?>
+<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
+ <corners
+ android:radius="100dp">
+ </corners>
+ <solid
+ android:color="#000000">
+ </solid>
+ <padding
+ android:left="16dp"
+ android:top="12dp"
+ android:right="16dp"
+ android:bottom="12dp" />
+</shape>
\ No newline at end of file diff --git a/mobile/build/fluttertoast/intermediates/packaged_res/debug/layout/toast_custom.xml b/mobile/build/fluttertoast/intermediates/packaged_res/debug/layout/toast_custom.xml new file mode 100644 index 0000000..6a90662 --- /dev/null +++ b/mobile/build/fluttertoast/intermediates/packaged_res/debug/layout/toast_custom.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?>
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_horizontal"
+ android:layout_marginStart="50dp"
+ android:background="@drawable/corner"
+ android:layout_marginEnd="50dp">
+
+ <TextView
+ android:id="@+id/text"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:background="#CC000000"
+ android:paddingStart="16dp"
+ android:paddingTop="10dp"
+ android:gravity="center"
+ android:maxLines="100"
+ android:paddingEnd="16dp"
+ android:paddingBottom="10dp"
+ android:textColor="#FFFFFF"
+ tools:text="Toast should be short." />
+</FrameLayout>
\ No newline at end of file |
