31 lines
715 B
Dart
31 lines
715 B
Dart
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(),
|
|
);
|
|
}
|
|
}
|