summaryrefslogtreecommitdiff
path: root/mobile/build/fluttertoast/intermediates/packaged_res/debug/drawable
diff options
context:
space:
mode:
authoromagdy7 <omar.professional8777@gmail.com>2023-12-20 19:40:11 +0200
committeromagdy7 <omar.professional8777@gmail.com>2023-12-20 19:40:11 +0200
commitb84fe9a9c4c18a3f4e957f76ead34403c4316f76 (patch)
tree14e4b37ae137ed538eaa14af4228c41033facac8 /mobile/build/fluttertoast/intermediates/packaged_res/debug/drawable
parent953b5ce3ad7e933c6f008202346fe5bf2985bf9e (diff)
downloadcarpool-b84fe9a9c4c18a3f4e957f76ead34403c4316f76.tar.xz
carpool-b84fe9a9c4c18a3f4e957f76ead34403c4316f76.zip
Added a simple Login and SignUp page for the web driver app
Diffstat (limited to 'mobile/build/fluttertoast/intermediates/packaged_res/debug/drawable')
-rw-r--r--mobile/build/fluttertoast/intermediates/packaged_res/debug/drawable/corner.xml7
-rw-r--r--mobile/build/fluttertoast/intermediates/packaged_res/debug/drawable/toast_bg.xml14
2 files changed, 21 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