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
| email, |
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/foundation.dart'; | |
| /// A class that can be used to derive a value based on data from another | |
| /// Listenable or Listenables. | |
| /// | |
| /// The value will be recomputed when the provided [listenable] notifies the | |
| /// listeners that values have changed. | |
| /// | |
| /// ### Simple Example | |
| /// |
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/foundation.dart'; | |
| /// A class that can be used to derive a value based on data from another | |
| /// Listenable or Listenables. | |
| /// | |
| /// The value will be recomputed when the provided [listenable] notifies the | |
| /// listeners that values have changed. | |
| /// | |
| /// ### Simple Example | |
| /// |
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:flutter_test/flutter_test.dart'; | |
| import 'package:github_search/github_api.dart'; | |
| import 'package:github_search/search_bloc.dart'; | |
| import 'package:github_search/search_empty_view.dart'; | |
| import 'package:github_search/search_error_view.dart'; | |
| import 'package:github_search/search_intro_view.dart'; | |
| import 'package:github_search/search_loading_view.dart'; | |
| import 'package:github_search/search_result_view.dart'; | |
| import 'package:github_search/search_screen.dart'; |
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(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Flutter Demo', | |
| home: MyTabbedPage(), |
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:math' show pi; | |
| import 'package:flutter/material.dart'; | |
| class Spinnies extends StatefulWidget { | |
| final Duration duration; | |
| final Size size; | |
| final double strokeWidth; | |
| final List<SpinRect> rects; |
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:math' show pi; | |
| import 'package:flutter/material.dart'; | |
| /// A Widget that can be configured to show funky spinning rectangles! | |
| /// | |
| /// ### Usage | |
| /// | |
| /// ``` | |
| /// Spinnies( |
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:math' show pi; | |
| import 'package:flutter/material.dart'; | |
| /// A Widget that can be configured to show funky spinning rectangles! | |
| /// | |
| /// ### Usage | |
| /// | |
| /// ``` | |
| /// Spinnies( |
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(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| title: 'Flutter Demo', | |
| theme: 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 'dart:async'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter_test/flutter_test.dart'; | |
| import 'package:quiver/async.dart'; | |
| import 'package:quiver/testing/time.dart'; | |
| void main() { | |
| group('CounterTimer', () { | |
| testWidgets('counts down from 10 to 0', (tester) async { |