feat(mobile): shadcn like and tailwind added to make things look yummy
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 1m21s

This commit is contained in:
2026-04-27 21:23:40 -05:00
parent 649ae1ee9f
commit 7d2f048932
32 changed files with 1909 additions and 325 deletions

View File

@@ -46,7 +46,7 @@ class ZebraScannerModule(
val source: String? =
intent.getStringExtra("com.symbol.datawedge.source")
println("LST SCANNER: data=\$barcodeData label=\$labelType source=\$source")
println("LST SCANNER: data=$barcodeData label=$labelType source=$source")
if (barcodeData.isNullOrBlank()) {
println("LST SCANNER: empty barcode")
@@ -157,6 +157,8 @@ class ZebraScannerModule(
val props = Bundle().apply {
putString("scanner_input_enabled", "true")
putString("scanner_selection", "auto")
putString("trigger_mode", "2") // 2 = HARD trigger only (recommended) wakes scanner up
}
putBundle("PARAM_LIST", props)
@@ -187,10 +189,11 @@ class ZebraScannerModule(
putBundle("PARAM_LIST", props)
}
putParcelableArrayList(
"PLUGIN_CONFIG",
arrayListOf(barcodeConfig, intentConfig, keystrokeConfig)
)
"PLUGIN_CONFIG",
arrayListOf(barcodeConfig, intentConfig, keystrokeConfig)
)
}
sendCommand("com.symbol.datawedge.api.SET_CONFIG", profileConfig)