feat: added card view with full brightness, and center no cards text

This commit is contained in:
2026-06-09 14:13:32 +03:00
parent 0e9cbcccfe
commit 1b0d535912
11 changed files with 186 additions and 10 deletions
@@ -1,13 +1,10 @@
package ru.omni_devel.cards
enum class CodeType {
QR,
BAR,
}
import com.google.zxing.BarcodeFormat
class CardInfo (
val id: Int,
val name: String,
val codeType: BarcodeFormat,
val codeValue: String,
val codeType: CodeType,
)