Skip to content
Snippets Groups Projects
Commit 1b0c6300 authored by nathaniacalista01's avatar nathaniacalista01
Browse files

fix : button color

parents 3f2febb2 6c04f128
Branches
2 merge requests!10Develop,!4Feat/login page
Showing
with 6 additions and 38 deletions
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
\ No newline at end of file
package com.example.bondoman.fragments
import android.os.Bundle
import androidx.fragment.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import androidx.fragment.app.Fragment
import com.example.bondoman.R
/**
* A simple [Fragment] subclass.
* Use the [SettingsFragment.newInstance] factory method to
* create an instance of this fragment.
*/
private const val ARG_PARAM1 = "param1"
private const val ARG_PARAM2 = "param2"
class SettingsFragment : Fragment() {
// TODO: Rename and change types of parameters
private var param1: String? = null
private var param2: String? = null
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
arguments?.let {
param1 = it.getString(ARG_PARAM1)
param2 = it.getString(ARG_PARAM2)
}
}
override fun onCreateView(
......@@ -35,24 +19,4 @@ class SettingsFragment : Fragment() {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_settings, container, false)
}
companion object {
/**
* Use this factory method to create a new instance of
* this fragment using the provided parameters.
*
* @param param1 Parameter 1.
* @param param2 Parameter 2.
* @return A new instance of fragment settingsFragment.
*/
// TODO: Rename and change types and number of parameters
@JvmStatic
fun newInstance(param1: String, param2: String) =
SettingsFragment().apply {
arguments = Bundle().apply {
putString(ARG_PARAM1, param1)
putString(ARG_PARAM2, param2)
}
}
}
}
\ No newline at end of file
app/src/main/res/drawable-hdpi/ic_download.png

436 B

app/src/main/res/drawable-hdpi/ic_logout.png

435 B

app/src/main/res/drawable-hdpi/ic_send.png

809 B

app/src/main/res/drawable-mdpi/ic_download.png

309 B

app/src/main/res/drawable-mdpi/ic_logout.png

321 B

app/src/main/res/drawable-mdpi/ic_send.png

535 B

app/src/main/res/drawable-xhdpi/ic_download.png

526 B

app/src/main/res/drawable-xhdpi/ic_logout.png

539 B

app/src/main/res/drawable-xhdpi/ic_send.png

1.05 KiB

app/src/main/res/drawable-xxhdpi/ic_download.png

831 B

app/src/main/res/drawable-xxhdpi/ic_logout.png

806 B

app/src/main/res/drawable-xxhdpi/ic_send.png

1.61 KiB

app/src/main/res/drawable-xxxhdpi/ic_download.png

1.03 KiB

app/src/main/res/drawable-xxxhdpi/ic_logout.png

1.2 KiB

app/src/main/res/drawable-xxxhdpi/ic_send.png

2.2 KiB

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="@color/primary_color" />
<corners android:radius="10dp" />
</shape>
\ No newline at end of file
app/src/main/res/drawable/icon_donwload.png

11.4 KiB

app/src/main/res/drawable/icon_logout.png

12.3 KiB

0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment