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
| void main() { | |
| final selectedWords = all_words.where((word) { | |
| return | |
| //word.has("m", rightPositions: [0]) && | |
| //word.has("o", rightPositions: [2]) && | |
| word.has("m", wrongPositions: [0,1,3]) && | |
| word.has("p", wrongPositions: [2]) && | |
| word.has("y", wrongPositions: [4]) && | |
| word.lacks("o") && | |
| word.lacks("u") && |
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
| /* | |
| * Copyright (C) 2021 Jared Rummler | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
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 'rectangular_icon_button.dart'; | |
| class AnimatedFAB extends StatefulWidget { | |
| const AnimatedFAB({Key key, this.icon, this.color, this.items}) | |
| : super(key: key); | |
| final Color color; | |
| final Widget icon; | |
| final List<SecondaryButtonParams> items; |
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
| { | |
| "name": "erluxman", | |
| "private": true, | |
| "engines": { | |
| "node": "14.x" | |
| }, | |
| "description": "Erluxman", | |
| "version": "1.0.0", | |
| "author": "Laxman Bhattarai <[email protected]>", | |
| "bugs": { |
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
| module.exports = { | |
| siteMetadata: { | |
| title: 'erluxman', | |
| author: 'Laxman Bhattarai', | |
| description: 'My Journey with Code', | |
| siteUrl: 'https://erluxman.com', | |
| social: { | |
| twitter: '@erluxman', | |
| }, | |
| }, |
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:flirt/flirt.dart'; | |
| import 'package:flutter/material.dart'; | |
| void main() { | |
| runApp(MyApp()); | |
| } | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { |
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:connectivity/connectivity.dart'; | |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { |
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_typeahead/flutter_typeahead.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return MaterialApp( | |
| debugShowCheckedModeBanner: false, |
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:apple_sign_in/apple_sign_in.dart'; | |
| import 'package:firebase_auth/firebase_auth.dart'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/services.dart'; | |
| import 'package:flutter_facebook_login/flutter_facebook_login.dart'; | |
| import 'package:google_sign_in/google_sign_in.dart'; | |
| import 'package:rxdart/rxdart.dart'; | |
| import 'package:toast_badge/toast_badge.dart'; | |
| /* Add the following dependencies to fully use it |
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:dough/dough.dart'; | |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return DoughRecipe( | |
| data: DoughRecipeData( |
NewerOlder