From ef7c0fdfacb35f270787745a95e2c9b2dd0aa086 Mon Sep 17 00:00:00 2001 From: micha3lbrown Date: Thu, 11 Feb 2021 13:44:27 -0500 Subject: [PATCH] Add bullet format for list --- Reference.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Reference.md b/Reference.md index 22f8eec..6c88915 100644 --- a/Reference.md +++ b/Reference.md @@ -1,7 +1,7 @@ ## Directory Structure -`/lib` - Flutter directory - takes dart code and turns it into iOS and Android native applications -`/nebula` - Build for mobile -`/android & /ios` - Shims for stitching together frontend (user facing) config items to persisted state and client configurations +- `/lib` - Flutter directory - takes dart code and turns it into iOS and Android native applications +- `/nebula` - Build for mobile +- `/android & /ios` - Shims for stitching together frontend (user facing) config items to persisted state and client configurations ## Persisted State State is stored using two different platform specific mechanisms. iOS applications stores its site specific data in a VPN configuration. Android state is persisted via Keychain(?)/encrypted filesystem. Flutter models help us persist data in a structured format but requires some native code (Kotlin/Swift) to parse and store the data (i.e. `android/` & `ios/`).