I hereby claim:
- I am jideguru on github.
- I am jideguru (https://keybase.io/jideguru) on keybase.
- I have a public key ASAgjgBWnJEm6Egw_RI0YjNepBfXMjtGOf02aQ72UOEeqAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| typedef String ScreenNameExtractor(RouteSettings settings); | |
| String defaultNameExtractor(RouteSettings settings) => settings.name ??''; | |
| class AmplitudeRouteObserver extends RouteObserver<PageRoute<dynamic>> { | |
| AmplitudeRouteObserver({ | |
| this.nameExtractor = defaultNameExtractor, | |
| Function(PlatformException error)? onError, | |
| }); |
| import 'dart:math'; | |
| import 'package:flutter/material.dart'; | |
| class LinearBar extends StatelessWidget { | |
| final double progress; | |
| const LinearBar({Key? key, required this.progress}) : super(key: key); | |
| @override |
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( |
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( |
| import 'package:flutter/material.dart'; | |
| class SizeConfig { | |
| // static keyword included so you can call this method without instantiating an object of it like so : | |
| // SizeConfig.height(context, 2) | |
| static BuildContext appContext; | |
| static MediaQueryData _mediaQueryData; | |
| void init(BuildContext context) { |
| import 'dart:async'; | |
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| @override |
| import 'dart:convert'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:http/http.dart' as http; | |
| class MyHomePage extends StatefulWidget { | |
| MyHomePage({Key key, this.title}) : super(key: key); | |
| final String title; |
| void main(int arg) { | |
| int n1 = 2; | |
| int n2 = 3; | |
| //Additon+ | |
| print( n1 + n2); | |
| } |
| import 'package:flutter_web/material.dart'; | |
| import 'package:login_page/widgets/input_field.dart'; | |
| import 'package:login_page/widgets/membership.dart'; | |
| import 'package:login_page/widgets/gender.dart'; | |
| class Home extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { |