View right_snap_list_demo_3.dart
This file contains 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 { | |
// This widget is the root of your application. | |
@override | |
Widget build(BuildContext context) { |
View right_snap_list_demo_2.dart
This file contains 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 { | |
// This widget is the root of your application. | |
@override | |
Widget build(BuildContext context) { |
View right_snap_list_demo_1.dart
This file contains 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 { | |
// This widget is the root of your application. | |
@override | |
Widget build(BuildContext context) { |
View progress_loader_reloaded.dart
This file contains 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
// custom_circle.dart | |
import 'package:flutter/material.dart'; | |
import 'package:vector_math/vector_math.dart' as vector_math; | |
class CustomCircle extends CustomPainter { | |
Paint circlePaint = Paint() | |
..color = Colors.grey.shade800 | |
..style = PaintingStyle.stroke | |
..strokeWidth = 10; |
View progress_loader.dart
This file contains 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:vector_math/vector_math.dart' as vector_math; | |
import 'package:custom_view/composition_widget.dart'; | |
import 'package:custom_view/custom_circle.dart'; | |
/* | |
custom_circle.dart | |
*/ | |
class CustomCircle extends CustomPainter { | |
Paint circlePaint = Paint() |
View compound_widget.dart
This file contains 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'; | |
class CompoundWidget extends StatefulWidget { | |
final Function onChanged; | |
const CompoundWidget({Key key, this.onChanged}) : super(key: key); | |
@override | |
_CompoundWidgetState createState() => _CompoundWidgetState(); | |
} |
View rotation_transition_test.dart
This file contains 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'; | |
class RotationTransitionTest extends StatefulWidget { | |
@override | |
_RotationTransitionTestState createState() => _RotationTransitionTestState(); | |
} | |
class _RotationTransitionTestState extends State<RotationTransitionTest> | |
with SingleTickerProviderStateMixin { | |
AnimationController _animationController; |
View tween_animation_test.dart
This file contains 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:math' as math; | |
class TweenAnimationTest extends StatefulWidget { | |
@override | |
_TweenAnimationTestState createState() => _TweenAnimationTestState(); | |
} | |
class _TweenAnimationTestState extends State<TweenAnimationTest> { | |
double endValue = 0.0; |
View animted_container_test.dart
This file contains 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'; | |
class AnimatedContainerTest extends StatefulWidget { | |
@override | |
_AnimatedContainerTestState createState() => _AnimatedContainerTestState(); | |
} | |
class _AnimatedContainerTestState extends State<AnimatedContainerTest> { | |
bool isBigger = false; |
View test_failed.dart
This file contains 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
//Here debug console output | |
Expected: <Instance of 'DataResponse<Utilisateur>'> | |
Actual: <null> | |
package:test_api expect | |
package:flutter_test/src/widget_tester.dart 369:3 expect | |
test/repositories/login/login_api_client_test.dart 30:7 main.<fn>.<fn> | |
// login_api_client_test.dart |
NewerOlder