Skip to content

Commit 9e6e8e4

Browse files
committed
design layout
0 parents  commit 9e6e8e4

37 files changed

+717
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

build.gradle

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
plugins {
2+
id 'com.android.application'
3+
}
4+
5+
android {
6+
compileSdkVersion 30
7+
buildToolsVersion "30.0.3"
8+
9+
defaultConfig {
10+
applicationId "ir.maryamsh.financialmanagement"
11+
minSdkVersion 21
12+
targetSdkVersion 30
13+
versionCode 1
14+
versionName "1.0"
15+
16+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
17+
}
18+
19+
buildTypes {
20+
release {
21+
minifyEnabled false
22+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
23+
}
24+
}
25+
compileOptions {
26+
sourceCompatibility JavaVersion.VERSION_1_8
27+
targetCompatibility JavaVersion.VERSION_1_8
28+
}
29+
}
30+
31+
dependencies {
32+
33+
implementation 'androidx.appcompat:appcompat:1.2.0'
34+
implementation 'com.google.android.material:material:1.2.1'
35+
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
36+
testImplementation 'junit:junit:4.+'
37+
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
38+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
39+
}

proguard-rules.pro

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package ir.maryamsh.financialmanagement;
2+
3+
import android.content.Context;
4+
5+
import androidx.test.platform.app.InstrumentationRegistry;
6+
import androidx.test.ext.junit.runners.AndroidJUnit4;
7+
8+
import org.junit.Test;
9+
import org.junit.runner.RunWith;
10+
11+
import static org.junit.Assert.*;
12+
13+
/**
14+
* Instrumented test, which will execute on an Android device.
15+
*
16+
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
17+
*/
18+
@RunWith(AndroidJUnit4.class)
19+
public class ExampleInstrumentedTest {
20+
@Test
21+
public void useAppContext() {
22+
// Context of the app under test.
23+
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
24+
assertEquals("ir.maryamsh.financialmanagement", appContext.getPackageName());
25+
}
26+
}

src/main/AndroidManifest.xml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="ir.maryamsh.financialmanagement">
4+
5+
<application
6+
android:allowBackup="true"
7+
android:icon="@mipmap/ic_launcher"
8+
android:label="@string/app_name"
9+
android:roundIcon="@mipmap/ic_launcher_round"
10+
android:supportsRtl="true"
11+
android:theme="@style/Theme.Financialmanagement">
12+
<activity android:name=".SingupActivity"></activity>
13+
<activity android:name=".LoginActivity">
14+
15+
</activity>
16+
<activity android:name=".IntroActivity" />
17+
<activity android:name=".MainActivity">
18+
<intent-filter>
19+
<action android:name="android.intent.action.MAIN" />
20+
<category android:name="android.intent.category.LAUNCHER" />
21+
</intent-filter>
22+
</activity>
23+
</application>
24+
25+
</manifest>

src/main/ic_launcher-playstore.png

40.3 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package ir.maryamsh.financialmanagement;
2+
3+
import androidx.appcompat.app.AppCompatActivity;
4+
5+
import android.os.Bundle;
6+
import android.widget.TextView;
7+
8+
public class IntroActivity extends AppCompatActivity {
9+
10+
@Override
11+
protected void onCreate(Bundle savedInstanceState) {
12+
super.onCreate(savedInstanceState);
13+
setContentView(R.layout.activity_intro);
14+
}
15+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package ir.maryamsh.financialmanagement;
2+
3+
import androidx.appcompat.app.AppCompatActivity;
4+
5+
import android.os.Bundle;
6+
7+
public class LoginActivity extends AppCompatActivity {
8+
9+
@Override
10+
protected void onCreate(Bundle savedInstanceState) {
11+
super.onCreate(savedInstanceState);
12+
setContentView(R.layout.activity_login);
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
package ir.maryamsh.financialmanagement;
2+
3+
import androidx.appcompat.app.AppCompatActivity;
4+
5+
import android.graphics.Typeface;
6+
import android.os.Bundle;
7+
import android.widget.Button;
8+
import android.widget.TextView;
9+
10+
public class MainActivity extends AppCompatActivity {
11+
Button BtnLogin,BtnSingin;
12+
@Override
13+
protected void onCreate(Bundle savedInstanceState) {
14+
super.onCreate(savedInstanceState);
15+
setContentView(R.layout.activity_main);
16+
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package ir.maryamsh.financialmanagement;
2+
3+
import androidx.appcompat.app.AppCompatActivity;
4+
5+
import android.os.Bundle;
6+
7+
public class SingupActivity extends AppCompatActivity {
8+
9+
@Override
10+
protected void onCreate(Bundle savedInstanceState) {
11+
super.onCreate(savedInstanceState);
12+
setContentView(R.layout.activity_singup);
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
2+
xmlns:aapt="http://schemas.android.com/aapt"
3+
android:width="108dp"
4+
android:height="108dp"
5+
android:viewportWidth="108"
6+
android:viewportHeight="108">
7+
<path
8+
android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
9+
<aapt:attr name="android:fillColor">
10+
<gradient
11+
android:startY="49.59793"
12+
android:startX="42.9492"
13+
android:endY="92.4963"
14+
android:endX="85.84757"
15+
android:type="linear">
16+
<item
17+
android:color="#44000000"
18+
android:offset="0.0" />
19+
<item
20+
android:color="#00000000"
21+
android:offset="1.0" />
22+
</gradient>
23+
</aapt:attr>
24+
</path>
25+
<path
26+
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
27+
android:fillColor="#FFFFFF"
28+
android:fillType="nonZero"
29+
android:strokeWidth="1"
30+
android:strokeColor="#00000000"/>
31+
</vector>

src/main/res/drawable/Vector.png

41.3 KB
Loading
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<shape xmlns:android="http://schemas.android.com/apk/res/android">
3+
<corners android:radius="55dp"/>
4+
<gradient
5+
android:startColor="#83F3E7"
6+
android:endColor="#36CBBC"
7+
android:angle="-90"/>
8+
</shape>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
2+
android:width="24dp"
3+
android:height="24dp"
4+
android:viewportWidth="24"
5+
android:viewportHeight="24">
6+
<path
7+
android:pathData="M17.6,11.48 L19.44,8.3a0.63,0.63 0,0 0,-1.09 -0.63l-1.88,3.24a11.43,11.43 0,0 0,-8.94 0L5.65,7.67a0.63,0.63 0,0 0,-1.09 0.63L6.4,11.48A10.81,10.81 0,0 0,1 20L23,20A10.81,10.81 0,0 0,17.6 11.48ZM7,17.25A1.25,1.25 0,1 1,8.25 16,1.25 1.25,0 0,1 7,17.25ZM17,17.25A1.25,1.25 0,1 1,18.25 16,1.25 1.25,0 0,1 17,17.25Z"
8+
android:fillColor="#FF000000"/>
9+
</vector>

src/main/res/drawable/ic_email.xml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<vector xmlns:android="http://schemas.android.com/apk/res/android"
2+
android:width="27dp"
3+
android:height="27dp"
4+
android:viewportWidth="27"
5+
android:viewportHeight="27">
6+
<path
7+
android:pathData="M25.65,19.575V7.425C25.65,6.3045 24.7455,5.4 23.625,5.4H4.7115C3.591,5.4 2.6865,6.3045 2.6865,7.425V19.575C2.6865,20.6955 3.591,21.6 4.7115,21.6H23.625C24.7455,21.6 25.65,20.6955 25.65,19.575ZM23.8815,7.2765C24.327,7.722 24.084,8.181 23.841,8.4105L18.36,13.4325L23.625,18.9135C23.787,19.1025 23.895,19.3995 23.706,19.602C23.5305,19.818 23.1255,19.8045 22.95,19.6695L17.0505,14.634L14.1615,17.2665L11.286,14.634L5.3865,19.6695C5.211,19.8045 4.806,19.818 4.6305,19.602C4.4415,19.3995 4.5495,19.1025 4.7115,18.9135L9.9765,13.4325L4.4955,8.4105C4.2525,8.181 4.0095,7.722 4.455,7.2765C4.9005,6.831 5.3595,7.047 5.7375,7.371L14.1615,14.175L22.599,7.371C22.977,7.047 23.436,6.831 23.8815,7.2765Z"
8+
android:fillColor="#ffffff"
9+
android:fillAlpha="0.62"/>
10+
</vector>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<vector
3+
android:height="108dp"
4+
android:width="108dp"
5+
android:viewportHeight="108"
6+
android:viewportWidth="108"
7+
xmlns:android="http://schemas.android.com/apk/res/android">
8+
<path android:fillColor="#3DDC84"
9+
android:pathData="M0,0h108v108h-108z"/>
10+
<path android:fillColor="#00000000" android:pathData="M9,0L9,108"
11+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
12+
<path android:fillColor="#00000000" android:pathData="M19,0L19,108"
13+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
14+
<path android:fillColor="#00000000" android:pathData="M29,0L29,108"
15+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
16+
<path android:fillColor="#00000000" android:pathData="M39,0L39,108"
17+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
18+
<path android:fillColor="#00000000" android:pathData="M49,0L49,108"
19+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
20+
<path android:fillColor="#00000000" android:pathData="M59,0L59,108"
21+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
22+
<path android:fillColor="#00000000" android:pathData="M69,0L69,108"
23+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
24+
<path android:fillColor="#00000000" android:pathData="M79,0L79,108"
25+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
26+
<path android:fillColor="#00000000" android:pathData="M89,0L89,108"
27+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
28+
<path android:fillColor="#00000000" android:pathData="M99,0L99,108"
29+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
30+
<path android:fillColor="#00000000" android:pathData="M0,9L108,9"
31+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
32+
<path android:fillColor="#00000000" android:pathData="M0,19L108,19"
33+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
34+
<path android:fillColor="#00000000" android:pathData="M0,29L108,29"
35+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
36+
<path android:fillColor="#00000000" android:pathData="M0,39L108,39"
37+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
38+
<path android:fillColor="#00000000" android:pathData="M0,49L108,49"
39+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
40+
<path android:fillColor="#00000000" android:pathData="M0,59L108,59"
41+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
42+
<path android:fillColor="#00000000" android:pathData="M0,69L108,69"
43+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
44+
<path android:fillColor="#00000000" android:pathData="M0,79L108,79"
45+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
46+
<path android:fillColor="#00000000" android:pathData="M0,89L108,89"
47+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
48+
<path android:fillColor="#00000000" android:pathData="M0,99L108,99"
49+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
50+
<path android:fillColor="#00000000" android:pathData="M19,29L89,29"
51+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
52+
<path android:fillColor="#00000000" android:pathData="M19,39L89,39"
53+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
54+
<path android:fillColor="#00000000" android:pathData="M19,49L89,49"
55+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
56+
<path android:fillColor="#00000000" android:pathData="M19,59L89,59"
57+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
58+
<path android:fillColor="#00000000" android:pathData="M19,69L89,69"
59+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
60+
<path android:fillColor="#00000000" android:pathData="M19,79L89,79"
61+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
62+
<path android:fillColor="#00000000" android:pathData="M29,19L29,89"
63+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
64+
<path android:fillColor="#00000000" android:pathData="M39,19L39,89"
65+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
66+
<path android:fillColor="#00000000" android:pathData="M49,19L49,89"
67+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
68+
<path android:fillColor="#00000000" android:pathData="M59,19L59,89"
69+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
70+
<path android:fillColor="#00000000" android:pathData="M69,19L69,89"
71+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
72+
<path android:fillColor="#00000000" android:pathData="M79,19L79,89"
73+
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
74+
</vector>

src/main/res/drawable/ic_pass.xml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<vector android:height="55dp" android:viewportHeight="30"
2+
android:viewportWidth="30" android:width="55dp" xmlns:android="http://schemas.android.com/apk/res/android">
3+
<group>
4+
<clip-path android:pathData="M0,0h25v25h-25z"/>
5+
<path android:fillAlpha="0.62" android:fillColor="#ffffff" android:pathData="M18.3332,18.3333H16.6665V16.6666H18.3332V18.3333Z"/>
6+
<path android:fillAlpha="0.62" android:fillColor="#ffffff" android:pathData="M13.3335,18.3333H15.0002V16.6666H13.3335V18.3333Z"/>
7+
<path android:fillAlpha="0.62" android:fillColor="#ffffff" android:pathData="M21.6667,18.3333H20V16.6666H21.6667V18.3333Z"/>
8+
<path android:fillAlpha="0.62" android:fillColor="#ffffff"
9+
android:fillType="evenOdd" android:pathData="M5,10V5.8333C5,5.0673 5.1509,4.3088 5.444,3.601C5.7372,2.8933 6.1669,2.2502 6.7085,1.7085C7.2502,1.1669 7.8933,0.7372 8.601,0.444C9.3088,0.1509 10.0673,0 10.8333,0C11.5994,0 12.3579,0.1509 13.0657,0.444C13.7734,0.7372 14.4164,1.1669 14.9581,1.7085C15.4998,2.2502 15.9295,2.8933 16.2226,3.601C16.5158,4.3088 16.6667,5.0673 16.6667,5.8333V10H19.1667C19.8297,10 20.4656,10.2634 20.9344,10.7322C21.4033,11.2011 21.6667,11.837 21.6667,12.5V13.4167C22.6086,13.6079 23.4554,14.1189 24.0636,14.8631C24.6719,15.6073 25.0042,16.5389 25.0042,17.5C25.0042,18.4611 24.6719,19.3927 24.0636,20.1369C23.4554,20.8811 22.6086,21.3921 21.6667,21.5833V22.5C21.6667,23.163 21.4033,23.7989 20.9344,24.2678C20.4656,24.7366 19.8297,25 19.1667,25H2.5C1.837,25 1.2011,24.7366 0.7322,24.2678C0.2634,23.7989 0,23.163 0,22.5L0,12.5C0,11.837 0.2634,11.2011 0.7322,10.7322C1.2011,10.2634 1.837,10 2.5,10H5ZM6.6667,5.8333C6.6667,4.7283 7.1056,3.6685 7.8871,2.8871C8.6685,2.1056 9.7283,1.6667 10.8333,1.6667C11.9384,1.6667 12.9982,2.1056 13.7796,2.8871C14.561,3.6685 15,4.7283 15,5.8333V10H6.6667V5.8333ZM14.1667,15C13.5036,15 12.8677,15.2634 12.3989,15.7322C11.9301,16.2011 11.6667,16.837 11.6667,17.5C11.6667,18.163 11.9301,18.7989 12.3989,19.2678C12.8677,19.7366 13.5036,20 14.1667,20H20.8333C21.4964,20 22.1323,19.7366 22.6011,19.2678C23.0699,18.7989 23.3333,18.163 23.3333,17.5C23.3333,16.837 23.0699,16.2011 22.6011,15.7322C22.1323,15.2634 21.4964,15 20.8333,15H14.1667Z"/>
10+
</group>
11+
</vector>

src/main/res/drawable/ic_prof.xml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<vector android:height="55dp" android:viewportHeight="30"
2+
android:viewportWidth="30" android:width="55dp" xmlns:android="http://schemas.android.com/apk/res/android">
3+
<path android:fillAlpha="0.62" android:fillColor="#ffffff" android:pathData="M16.2002,2.5C9.424,2.5 3.7002,8.2238 3.7002,15C3.7002,21.7762 9.424,27.5 16.2002,27.5C22.9764,27.5 28.7002,21.7762 28.7002,15C28.7002,8.2238 22.9764,2.5 16.2002,2.5ZM16.2002,8.75C18.3589,8.75 19.9502,10.34 19.9502,12.5C19.9502,14.66 18.3589,16.25 16.2002,16.25C14.0427,16.25 12.4502,14.66 12.4502,12.5C12.4502,10.34 14.0427,8.75 16.2002,8.75ZM9.8177,20.965C10.9389,19.315 12.8089,18.215 14.9502,18.215H17.4502C19.5927,18.215 21.4614,19.315 22.5827,20.965C20.9852,22.675 18.7189,23.75 16.2002,23.75C13.6814,23.75 11.4152,22.675 9.8177,20.965Z"/>
4+
</vector>

src/main/res/drawable/img_intro1.png

143 KB
Loading

src/main/res/drawable/input_bg.xml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<shape android:shape="rectangle" xmlns:android="http://schemas.android.com/apk/res/android">
3+
<corners android:radius="40dp"/>
4+
<solid android:color="#73FFFFFF"/>
5+
</shape>

src/main/res/drawable/intro1.xml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<shape xmlns:android="http://schemas.android.com/apk/res/android">
3+
<gradient
4+
android:startColor="#EC7E58"
5+
android:endColor="#D84840"
6+
android:angle="-90"
7+
/>
8+
<corners android:topLeftRadius="35dp" android:topRightRadius="35dp"/>
9+
</shape>

src/main/res/drawable/radius.xml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<shape android:shape="rectangle" xmlns:android="http://schemas.android.com/apk/res/android">
3+
<corners android:radius="100dp"/>
4+
<solid android:color="@color/white"/>
5+
</shape>

src/main/res/drawable/sliderbg.png

15.8 KB
Loading

src/main/res/font/kalameh_bold.ttf

132 KB
Binary file not shown.

src/main/res/font/kalameh_regular.ttf

136 KB
Binary file not shown.
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:app="http://schemas.android.com/apk/res-auto"
4+
xmlns:tools="http://schemas.android.com/tools"
5+
android:layout_width="match_parent"
6+
android:layout_height="match_parent"
7+
tools:context=".IntroActivity">
8+
9+
</androidx.constraintlayout.widget.ConstraintLayout>

0 commit comments

Comments
 (0)