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'; | |
| void main() => runApp(new MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return new MaterialApp( | |
| title: 'Home', | |
| theme: new ThemeData( |
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 'package:medium_app_ui/NewsArticle.dart'; | |
| import 'package:medium_app_ui/NewsHelper.dart'; | |
| void main() => runApp(new MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return new MaterialApp( |
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
| library chess_board; | |
| import 'dart:async'; | |
| import 'package:chess_vectors_flutter/chess_vectors_flutter.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:chess/chess.dart' as chess; | |
| typedef Null MoveCallback(String moveNotation); | |
| typedef Null CheckMateCallback(String winColor); |
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 _DiamondBorder extends ShapeBorder { | |
| const _DiamondBorder(); | |
| @override | |
| EdgeInsetsGeometry get dimensions { | |
| return const EdgeInsets.only(); | |
| } | |
| @override | |
| Path getInnerPath(Rect rect, { TextDirection textDirection }) { |
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 'package:chess_vectors_flutter/chess_vectors_flutter.dart'; | |
| class MyHomePage extends StatefulWidget { | |
| @override | |
| _MyHomePageState createState() => _MyHomePageState(); | |
| } | |
| class _MyHomePageState extends State<MyHomePage> with TickerProviderStateMixin { |
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 GetLocationPage extends StatefulWidget { | |
| @override | |
| _GetLocationPageState createState() => _GetLocationPageState(); | |
| } | |
| class _GetLocationPageState extends State<GetLocationPage> { | |
| var location = new Location(); | |
| Map<String, double> userLocation; |
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 'package:location/location.dart'; | |
| class ListenPage extends StatefulWidget { | |
| @override | |
| _ListenPageState createState() => _ListenPageState(); | |
| } | |
| class _ListenPageState extends State<ListenPage> { |
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 'package:geolocator/geolocator.dart'; | |
| import 'dart:async'; | |
| class GeoListenPage extends StatefulWidget { | |
| @override | |
| _GeoListenPageState createState() => _GeoListenPageState(); | |
| } | |
| class _GeoListenPageState extends State<GeoListenPage> { |
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 GoogleMapsDemo extends StatefulWidget { | |
| @override | |
| _GoogleMapsDemoState createState() => _GoogleMapsDemoState(); | |
| } | |
| class _GoogleMapsDemoState extends State<GoogleMapsDemo> { | |
| GoogleMapController mapController; | |
| Location location = Location(); | |
| Marker marker; |
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
| GridView.builder( | |
| shrinkWrap: true, | |
| physics: NeverScrollableScrollPhysics(), | |
| gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( | |
| crossAxisCount: columnCount, | |
| ), | |
| itemBuilder: (context, position) { | |
| // Get row and column number of square | |
| int rowNumber = (position / columnCount).floor(); | |
| int columnNumber = (position % columnCount); |