Added new UI to dashboard.

This commit is contained in:
vsuryakumar
2023-05-26 01:22:38 +05:30
parent 685d56acca
commit 30665be147
19 changed files with 435 additions and 10 deletions

View File

@@ -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?
)

View File

@@ -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)
}
}

View File

@@ -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)
}
}