Skip to content

Commit

Permalink
Add measure string
Browse files Browse the repository at this point in the history
  • Loading branch information
Hamza417 committed Jul 23, 2024
1 parent cfc7a15 commit a7ce29f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
17 changes: 17 additions & 0 deletions app/src/main/java/app/simple/positional/ui/panels/Measure.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package app.simple.positional.ui.panels

import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
import app.simple.positional.R
import app.simple.positional.extensions.fragment.ScopedFragment

class Measure : ScopedFragment() {

override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
val view = inflater.inflate(R.layout.fragment_measure, container, false)

return view
}
}
6 changes: 6 additions & 0 deletions app/src/main/res/layout/fragment_measure.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

</androidx.constraintlayout.widget.ConstraintLayout>
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -339,4 +339,5 @@
<string name="radius">Radius</string>
<string name="crescent_width">Crescent Width</string>
<string name="other_apps">Other Apps</string>
<string name="measure">Measure</string>
</resources>

0 comments on commit a7ce29f

Please sign in to comment.