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
| // ignore_for_file: cascade_invocations, avoid_print | |
| import 'package:flutter/material.dart'; | |
| class ProblemTransform extends StatelessWidget { | |
| const ProblemTransform({super.key}); | |
| @override | |
| Widget build(BuildContext context) { | |
| return Scaffold( |
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
| Future<void> _assignWidgetToMarker( | |
| double size, | |
| Model item, | |
| double iconSizeMarker, | |
| State state, | |
| ) async { | |
| return WidgetToByte( | |
| size: size, | |
| markerWidget: ContainerWithShadow( | |
| child: SvgPicture.asset( |
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
| { | |
| // Autor: Jean Roldan | |
| // Update: 19/09/2021 16:04 | |
| "JsonSerializable": { | |
| "prefix": "!json", | |
| "body": [ | |
| "factory ${1:NameModel}.fromJson(Map<String, dynamic> json) => _$${1:NameModel}FromJson(json);", | |
| "Map<String, dynamic> toJson() => _$${1:NameModel}ToJson(this);" | |
| ], | |
| "description": "JsonSerializable" |
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:google_maps_flutter/google_maps_flutter.dart'; | |
| import 'package:flutter/services.dart' show rootBundle; | |
| import 'package:xml/xml.dart'; | |
| /// used packages | |
| /// xml: 4.5.1 | |
| /// latlong: 0.6.1 | |
| /// google_maps_flutter: 1.2.0 | |
| /// |