48 lines
1.5 KiB
Dart
48 lines
1.5 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:nextcloudapp/components/default_values.dart';
|
|
import 'package:nextcloudapp/screens/welcome/welcome_screen.dart';
|
|
|
|
|
|
void main() => runApp(const MyApp());
|
|
|
|
class MyApp extends StatelessWidget {
|
|
const MyApp({super.key});
|
|
|
|
// This widget is the root of your application.
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
title: 'School Management System Demo',
|
|
theme: ThemeData(
|
|
primaryColor: primaryColor,
|
|
scaffoldBackgroundColor: Colors.white,
|
|
elevatedButtonTheme: ElevatedButtonThemeData(
|
|
style: ElevatedButton.styleFrom(
|
|
elevation: 0,
|
|
foregroundColor: Colors.white,
|
|
backgroundColor: primaryColor,
|
|
shape: const StadiumBorder(),
|
|
maximumSize: const Size(double.infinity, 56),
|
|
minimumSize: const Size(double.infinity, 56),
|
|
),
|
|
),
|
|
inputDecorationTheme: const InputDecorationTheme(
|
|
filled: true,
|
|
fillColor: primaryLightColor,
|
|
iconColor: primaryColor,
|
|
prefixIconColor: primaryColor,
|
|
contentPadding: EdgeInsets.symmetric(
|
|
horizontal: defaultPadding, vertical: defaultPadding),
|
|
border: OutlineInputBorder(
|
|
borderRadius: BorderRadius.all(Radius.circular(30)),
|
|
borderSide: BorderSide.none,
|
|
),
|
|
),
|
|
fontFamily: 'Poppins',
|
|
),
|
|
home: const WelcomeScreen(),
|
|
);
|
|
}
|
|
}
|