feat: add frontend app, improve static file serving with lazy loading and root redirect

This commit is contained in:
2026-07-20 21:03:48 +03:00
parent 799e939037
commit d1e96d35aa
27 changed files with 2053 additions and 14 deletions
+30
View File
@@ -0,0 +1,30 @@
import 'package:flutter/material.dart';
import 'screens/pipeline_list.dart';
void main() {
runApp(const ZaloopipeApp());
}
class ZaloopipeApp extends StatelessWidget {
const ZaloopipeApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Zaloopipe',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorSchemeSeed: Colors.blue,
useMaterial3: true,
brightness: Brightness.light,
),
darkTheme: ThemeData(
colorSchemeSeed: Colors.blue,
useMaterial3: true,
brightness: Brightness.dark,
),
themeMode: ThemeMode.system,
home: const PipelineListScreen(),
);
}
}