View load_json_asset.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
final String response = await rootBundle.loadString('assets/surah.json'); | |
final data = await json.decode(response); |
View inline_map_init.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
{for (var v in products) v.id!: v}; |
View helper_toJson_fromJson_trick.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
Map<String, dynamic> toJson() { | |
List<Map>? orderProducts = this.orderProducts != null | |
? this.orderProducts!.map((i) => i.toJson()).toList() | |
: null; | |
return { | |
'pos_id': posId, | |
'sector_id': sectorId, | |
'seller_id': sellerId, | |
"date": date == null ? null : date!.toIso8601String(), |
View frosted_glass_effect.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
Stack( | |
children: [ | |
Center( | |
child: Container( | |
height: 200, | |
width: 200, | |
decoration: new BoxDecoration( | |
borderRadius: BorderRadius.circular(20.0), | |
), | |
child: FlutterLogo(), |
View update_map.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
//Set the value if it doesn't | |
//You may be tempted to implement some conditional logic to handle this: | |
class ShoppingCart { | |
final Map<String, int> items = {}; | |
void add(String key, int quantity) { | |
if (items.containsKey(key)) { | |
// item exists: update it | |
items[key] = quantity + items[key]!; |
View VoidCallBackArgs.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
typedef Int2VoidFunc = void Function(int); | |
// or: typedef void Int2VoidFunc(int arg); | |
class MyOtherClass { | |
final Int2VoidFunc callback; | |
MyOtherClass(this.callback); | |
void callCallaback() { callback(5); } | |
} |
View bloc_observer.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
class SimpleBlocObserver extends BlocObserver { | |
@override | |
void onEvent(Bloc bloc, Object? event) { | |
super.onEvent(bloc, event); | |
print(event); | |
} | |
@override | |
void onTransition(Bloc bloc, Transition transition) { | |
super.onTransition(bloc, transition); |
View limite_double.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
double num1 = double.parse((12.3412).toStringAsFixed(2)); | |
// 12.34 | |
double num2 = double.parse((12.5668).toStringAsFixed(2)); | |
// 12.57 | |
double num3 = double.parse((-12.3412).toStringAsFixed(2)); | |
// -12.34 | |
double num4 = double.parse((-12.3456).toStringAsFixed(2)); |
View integer_division.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
#division entière | |
int n = 7 ~/ 3; | |
résult by excess | |
int exces = (7/3).ceil(); | |
result by default | |
int dfault = (7/3).floor(); | |
print(n); | |
print(exces); | |
print(dfault); |
NewerOlder