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
{ | |
"name": "flare", | |
"children": [ | |
{ | |
"name": "analytics", | |
"children": [ | |
{ | |
"name": "cluster", | |
"children": [ | |
{ |
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 'dart:async'; | |
import 'package:flutter/widgets.dart'; | |
import 'package:shared_preferences/shared_preferences.dart'; | |
class SharedPreferencesBuilder<T> extends StatelessWidget { | |
final String pref; | |
final AsyncWidgetBuilder<T> builder; | |
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
Dart 27 hrs 25 mins βββββββββββββββββββββ 62.4% | |
Go 6 hrs 54 mins βββββββββββββββββββββ 15.7% | |
SQL 3 hrs 14 mins βββββββββββββββββββββ 7.4% | |
Groovy 2 hrs 2 mins βββββββββββββββββββββ 4.6% | |
Java 1 hr 6 mins βββββββββββββββββββββ 2.5% |
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
const SOAPRequest = `<?xml version="1.0" encoding="UTF-8"?> | |
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope" | |
xmlns:xsd="http://www.w3.org/2001/XMLSchema" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" | |
xmlns:base_services="http://wsdl.cybozu.co.jp/base/2008"> | |
<SOAP-ENV:Header> | |
<Action SOAP-ENV:mustUnderstand="1" xmlns="http://schemas.xmlsoap.org/ws/2003/03/addressing">{{.Action}}</Action> | |
<Security xmlns:wsu="http://schemas.xmlsoap.org/ws/2002/07/utility" | |
SOAP-ENV:mustUnderstand="1" |
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
package main | |
import ( | |
"encoding/xml" | |
"fmt" | |
"github.com/tiaguinho/gosoap" | |
"log" | |
) | |
type GetHolidaysForMonthResponse struct { |
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 ClippedCard extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return ClipPath( | |
clipper: CardClipper(35.0), | |
child: Container( |
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
ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
[ +18 ms] I/flutter (29191): The following _CompileTimeError was thrown building GoogleMap(dirty, state: _GoogleMapState#5fffc): | |
[ ] I/flutter (29191): 'file:///C:/Users/Braulio/AppData/Roaming/Pub/Cache/git/plugins-5b45f58ccab7009d473d6c767e9e40ddcabedde3/packages/google_maps_flutter/lib/src/google_map.dart': | |
[ ] I/flutter (29191): error: line 42 pos 36: | |
[ ] I/flutter (29191): file:///C:/Users/Braulio/AppData/Roaming/Pub/Cache/git/plugins-5b45f58ccab7009d473d6c767e9e40ddcabedde3/packages/google_maps_flutter/lib/src/google_map.dart:42:36: | |
[ ] I/flutter (29191): Error: The argument type 'dart.core::Set<invalid-type>' can't be assigned to the parameter type | |
[ ] I/flutter (29191): 'dart.core::List<#lib1::OneSequenceGestureRecognizer>'. | |
[ ] I/flutter (29191): Try changing the type of the parameter, or casting the argument to | |
[ ] I/flutter (29191): 'dart.core::List<#lib1::OneSequenceGestureRecognizer>'. | |
[ |
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
<ImageView | |
android:id="@+id/flag_image" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
app:srcCompat="@drawable/angolan_flag" | |
android:layout_gravity="center" | |
android:scaleType="centerCrop" | |
android:padding="50dp"/> |
NewerOlder