You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
820 B

10 months ago
import 'package:flutter/material.dart';
import 'Views/loginPage.dart';
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
9 months ago
10 months ago
static bool isRegisterOpen = false;
static DateTime? startDate;
9 months ago
10 months ago
static const Gradient primaryGradient = LinearGradient(
colors: [
Colors.white,
9 months ago
Color.fromARGB(255, 4, 54, 95),
10 months ago
],
begin: Alignment.topLeft,
end: Alignment.bottomRight,
);
@override
Widget build(BuildContext context) {
return MaterialApp(
9 months ago
title: 'GUYCOM',
10 months ago
debugShowCheckedModeBanner: false,
theme: ThemeData(
canvasColor: Colors.transparent,
),
9 months ago
home: Container(
decoration: const BoxDecoration(
gradient: MyApp.primaryGradient,
),
child: const LoginPage(),
10 months ago
),
);
}
9 months ago
}