Added new UI to dashboard.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
package com.example.hpos.data.model
|
||||
|
||||
data class PendingQueue(
|
||||
val photoInDevicePath: String?,
|
||||
val csvInDevicePath: String?,
|
||||
val detailedCsvInDevicePath: String?,
|
||||
val pdfReportInDevicePath: String?
|
||||
)
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.example.hpos.presentation
|
||||
|
||||
import android.os.Bundle
|
||||
import androidx.fragment.app.Fragment
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import com.example.hpos.R
|
||||
|
||||
class DashboardFragment : Fragment() {
|
||||
|
||||
override fun onCreateView(
|
||||
inflater: LayoutInflater, container: ViewGroup?,
|
||||
savedInstanceState: Bundle?
|
||||
): View? {
|
||||
// Inflate the layout for this fragment
|
||||
return inflater.inflate(R.layout.fragment_dashboard, container, false)
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.example.hpos.presentation
|
||||
|
||||
import android.os.Bundle
|
||||
import androidx.fragment.app.Fragment
|
||||
import android.view.LayoutInflater
|
||||
import android.view.View
|
||||
import android.view.ViewGroup
|
||||
import com.example.hpos.R
|
||||
|
||||
class RegisterOneScanAbhaFragment : Fragment() {
|
||||
|
||||
override fun onCreateView(
|
||||
inflater: LayoutInflater, container: ViewGroup?,
|
||||
savedInstanceState: Bundle?
|
||||
): View? {
|
||||
// Inflate the layout for this fragment
|
||||
return inflater.inflate(R.layout.fragment_register_one_scan_abha, container, false)
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user