Created project base structure, state management, router and login

This commit is contained in:
Juan Gilsanz Polo
2024-02-21 23:53:22 +01:00
commit 460e13b2e9
168 changed files with 6966 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import 'package:flutter/material.dart';
const Map<int, Color> swatch = {
50: Color.fromRGBO(87, 85, 217, .1),
100: Color.fromRGBO(87, 85, 217, .2),
200: Color.fromRGBO(87, 85, 217, .3),
300: Color.fromRGBO(87, 85, 217, .4),
400: Color.fromRGBO(87, 85, 217, .5),
500: Color.fromRGBO(87, 85, 217, .6),
600: Color.fromRGBO(87, 85, 217, .7),
700: Color.fromRGBO(87, 85, 217, .8),
800: Color.fromRGBO(87, 85, 217, .9),
900: Color.fromRGBO(87, 85, 217, 1),
};
const MaterialColor linkdingColor = MaterialColor(0xff5755d9, swatch);