feat: add flutter mobile console and refine login ui

This commit is contained in:
2026-05-15 00:02:49 +08:00
parent 7a286fd619
commit 8986fda866
87 changed files with 9822 additions and 157 deletions
+14
View File
@@ -0,0 +1,14 @@
class ApiConfig {
const ApiConfig({
this.seedBaseUrl = '',
});
final String seedBaseUrl;
static ApiConfig fromEnvironment() {
const rawValue = String.fromEnvironment('LIVE_RECORDER_API_BASE_URL');
return ApiConfig(seedBaseUrl: rawValue.trim());
}
bool get hasSeedBaseUrl => seedBaseUrl.isNotEmpty;
}