Skip to content

Commit

Permalink
Merge pull request #88 from DKU-Dgaja/an-feat(#86)-마이스터디-관련-페이지-ui-구현
Browse files Browse the repository at this point in the history
[AN] feat(#86): 마이스터디 관련 페이지 UI 구현
  • Loading branch information
saesang authored Feb 1, 2024
2 parents 6894fb2 + 9bca1d5 commit 6eed960
Show file tree
Hide file tree
Showing 34 changed files with 823 additions and 74 deletions.
6 changes: 6 additions & 0 deletions frontend/presentation/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<application>
<activity
android:name=".ui.home.ToDoActivity"
android:exported="false" />
<activity
android:name=".ui.mystudy.MyStudyMainActivity"
android:exported="false" />
<activity
android:name=".ui.home.MainHomeActivity"
android:exported="false" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.takseha.presentation.ui.home

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import com.takseha.presentation.R

class ToDoActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_to_do)
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package com.takseha.presentation.ui.mystudy

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import com.takseha.presentation.R

class MyStudyMainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_my_study_main)
}
}
10 changes: 10 additions & 0 deletions frontend/presentation/src/main/res/drawable/box_non_stroke_r8.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid
android:color="#EFF8FF"/>
<size
android:width="346dp"
android:height="52dp" />
<corners android:radius="8dp" />
</shape>
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions frontend/presentation/src/main/res/drawable/progress_bar.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
android:fromDegrees="270"
android:toDegrees="270" >
<shape
android:innerRadiusRatio="2.1"
android:innerRadiusRatio="2.15"
android:shape="ring"
android:thickness="8dp" >
android:thickness="13dp" >
<gradient
android:endColor="@color/BASIC_BLUE"
android:startColor="@color/BASIC_GREEN"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
android:layout_marginBottom="-20dp"
android:background="@color/WHITE"
app:cardCornerRadius="20dp"
android:elevation="60dp"
app:layout_constraintBottom_toBottomOf="parent">

<LinearLayout
Expand Down
Loading

0 comments on commit 6eed960

Please sign in to comment.