Default
Default
In-browser search
Settings
Mob is fully featured — but since 0.7.0 the capabilities live in focused
packages rather than one monolithic core. Core ships the kernel every app
needs (screens, navigation, rendering, state, storage, permissions,
distribution, the test harness, and the neutral light/dark/adaptive
themes); everything else is one dep + one config line away.
Activating any capability plugin is the same two steps:
# mix.exs
{ :mob_camera , "~> 0.1" }
# mob.exs
config :mob , :plugins , [ :mob_camera ] Style packages use the styles lane instead:
config :mob , :styles , [ :mob_themes ]
config :mob , :default_style , :mob_themes Capability plugins Package Gives you Notes mob_camera Photo/video capture, live preview session, ML-ready frame streaming The <CameraPreview> view node is in core; pair it with MobCamera.start_preview/2 mob_photos The system photo/video picker No runtime permission needed (out-of-process picker) mob_location GPS/network location — one-shot + continuous mob_biometric Face ID / Touch ID / fingerprint auth iOS fully working; Android currently reports :not_available (fix tracked) mob_notify Local notification scheduling + push registration Pairs with the server-side mob_push ; delivery into handle_info is core behavior mob_scanner QR / barcode scanning (full-screen scanner) Also activate mob_camera (it owns the :camera permission) mob_bluetooth Bluetooth discovery + SPP/HFP/HID mob_screencast The device's own screen as an on-device-encoded H264 stream For remote viewing/WebRTC; max_size is Android-only today
Style packages Package Gives you mob_themes Five preset looks — Obsidian (default), ObsidianGlass, Citrus, Birch, Material3. Switch live with Mob.Theme.set(MobThemes.Citrus)
Framework integrations Package Gives you mob_ash Declare Ash resources, get generated list/detail/create screens per resource — Ash runs on-device
Server-side companions Package Gives you mob_push APNs + FCM push sending from your Elixir server (no mob dependency — works for any app)
Building your own