Returns true if the tutorial should be displayed (first visit).
true
static Future<bool> shouldShow() async { final box = await Hive.openBox(_hiveBox); return box.get(_hiveKey, defaultValue: false) != true; }