Present an mDL in-person/offline
Present an ISO/IEC 18013-5 mDL over BlueTooth Low Energy
// The different Wallet-side states of an mDL presentation.
enum class PresentmentState {
/// Presentment has yet to start
UNINITIALIZED,
/// App should display the error message
ERROR,
/// App should display the QR code
ENGAGING_QR_CODE,
/// App should display an interactive page for the user to chose which values to reveal
SELECT_NAMESPACES,
/// App should display a success message and offer to close the page
SUCCESS,
}1. Define your Mdl Sharing View
2. Implement the Engaging_Qr_Code status
3. Implement the Submit_Namespaces status
4. Implement the other PresentmentStates
Last updated
Was this helpful?