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 'dart:async'; | |
| import 'dart:math'; | |
| import 'package:flutter/material.dart'; | |
| import 'dart:js_util' as js_util; | |
| import 'dart:ui' as ui; | |
| import 'dart:html'; | |
| typedef void CurrentLocation(double lat, double lng); | |
| typedef void MapCallback(); |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset='utf-8'> | |
| <meta name='viewport' content='width=device-width'> | |
| <title>Privacy Policy</title> | |
| <style> body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; padding:1em; } </style> | |
| </head> | |
| <body> | |
| <h2>Privacy Policy</h2> <p> |
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
| class SliverGridProductList extends StatefulWidget { | |
| final List<Base> products; | |
| final FbConn fbConn; | |
| SliverGridProductList({this.products, this.fbConn}); | |
| @override | |
| _SliverGridProductListState createState() => | |
| new _SliverGridProductListState(); | |
| } |
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'; | |
| class InputField extends StatelessWidget { | |
| final IconData icon; | |
| final String hintText; | |
| final TextInputType textInputType; | |
| final Color textFieldColor, iconColor; | |
| final bool obscureText; | |
| final double bottomMargin; |
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 'dart:async'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/services.dart'; | |
| import 'screens/style.dart'; | |
| import 'screens/home/home.dart'; | |
| import 'screens/gallery/gallery.dart'; | |
| import 'screens/settings/settings.dart'; | |
| class MyApp extends StatefulWidget { |