This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
ThemeData lightTheme = ThemeData( | |
brightness: Brightness.light, | |
visualDensity: VisualDensity(vertical: 0.5, horizontal: 0.5), | |
primarySwatch: MaterialColor( | |
0xFFF5E0C3, | |
<int, Color>{ | |
50: Color(0x1aF5E0C3), | |
100: Color(0xa1F5E0C3), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'dart:ui' as ui; | |
import 'package:flutter_svg/flutter_svg.dart'; | |
class ScreenWelcome extends StatelessWidget { | |
ScreenWelcome({ | |
Key key, | |
}) : super(key: key); | |
@override | |
Widget build(BuildContext context) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
ThemeData lightTheme = ThemeData( | |
brightness: Brightness.light, | |
visualDensity: VisualDensity(vertical: 0.5, horizontal: 0.5), | |
primarySwatch: MaterialColor( | |
0xFFF5E0C3, | |
<int, Color>{ | |
50: Color(0x1aF5E0C3), | |
100: Color(0xa1F5E0C3), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
ThemeData lightTheme = ThemeData( | |
brightness: Brightness.light, | |
visualDensity: VisualDensity(vertical: 0.5, horizontal: 0.5), | |
primarySwatch: MaterialColor( | |
0xFFF5E0C3, | |
<int, Color>{ | |
50: Color(0x1aF5E0C3), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
ThemeData lightTheme = ThemeData( | |
brightness: Brightness.light, | |
visualDensity: VisualDensity(vertical: 0.5, horizontal: 0.5), | |
primarySwatch: MaterialColor( | |
0xFFF5E0C3, | |
<int, Color>{ | |
50: Color(0x1aF5E0C3), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Needed: add http: as dependency | |
import 'dart:convert'; | |
import 'package:flutter/cupertino.dart'; | |
import 'package:flutter/material.dart'; | |
import 'package:http/http.dart'; | |
void main() { | |
runApp(App()); |
OlderNewer