2025-07-21 07:19:42 +05:00
|
|
|
import 'package:flutter/material.dart';
|
2025-07-24 09:34:39 +05:00
|
|
|
import 'package:fluxcloud/sftp_connection_list.dart';
|
2025-07-21 07:19:42 +05:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
runApp(const MainApp());
|
|
|
|
}
|
|
|
|
|
|
|
|
class MainApp extends StatelessWidget {
|
|
|
|
const MainApp({super.key});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
|
|
|
theme: ThemeData(
|
|
|
|
useMaterial3: true,
|
|
|
|
colorSchemeSeed: Colors.teal,
|
|
|
|
brightness: Brightness.light
|
|
|
|
),
|
|
|
|
darkTheme: ThemeData(
|
|
|
|
useMaterial3: true,
|
|
|
|
colorSchemeSeed: Colors.teal,
|
|
|
|
brightness: Brightness.dark
|
|
|
|
),
|
|
|
|
themeMode: ThemeMode.system,
|
|
|
|
color: Color(0x002EC1EB),
|
2025-07-24 09:34:39 +05:00
|
|
|
home: SftpConnectionList()
|
2025-07-21 07:19:42 +05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|