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
workflows: | |
ios-workflow: | |
name: iOS Workflow | |
max_build_duration: 30 | |
environment: | |
vars: | |
XCODE_WORKSPACE: "Runner.xcworkspace" | |
XCODE_SCHEME: "Runner" | |
# https://docs.codemagic.io/code-signing-yaml/signing-ios/ | |
# Put your bundle id here |
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
Future<void> _showDemoPage(BuildContext context, String url) async { | |
final parameters = await Navigator.of(context).push( | |
MaterialPageRoute( | |
builder: (context) => CustomWebView( | |
initialUrl: url, | |
), | |
), | |
); | |
print('AppHome: _showDemoPage: parameters: $parameters'); |
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 'package:flutter/material.dart'; | |
import 'package:timer_count_down/timer_count_down.dart'; | |
class CountdownTimer extends StatefulWidget { | |
final Duration timerDuration; | |
final VoidCallback onComplete; | |
final String Function(double seconds) formatTimerString; | |
final Color startColor; | |
final Color endColor; |
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 FormFieldValidator<String> passwordValidator = (String value) { | |
// 1 lowercase, 1 uppercase, 1 number, 1 special character & at least 8 characters long | |
final regExp = | |
RegExp(r'^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[!@#\$&*~]).{8,}$'); | |
final hasMatch = regExp.hasMatch(value); | |
if (!hasMatch) { | |
return 'Password should be:' | |
'\n - At least one lowercase, uppercase character' | |
'\n - At least one numeric characters' |
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
void main() { | |
_executeProcess1(); | |
_executeProcess1(isAdvanced: true); | |
} | |
void _executeProcess1({bool isAdvanced = false}){ | |
final list1 = [ | |
1,2,3,4, if(isAdvanced)...[5,6,7,8,9,10,],]; | |
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 'dart:convert'; | |
import 'dart:io'; | |
import 'package:http/http.dart' as http; | |
const defaultTimeoutDuration = Duration(seconds: 30); | |
/// This method is used to send an HTTP POST request | |
/// with given [url]. The response will be |
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> extractParameters(String url){ | |
// get parameters part from complete url string | |
final paramString = url.substring(url.indexOf('?') + 1); | |
final params = {}; | |
// iterate over parameter string by splitting it with `&` | |
paramString.split('&').forEach((String _param) { | |
// Split each parameter string with `=` to get key & value part | |
final entry = _param.split('='); |
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
void main() { | |
final pos = Positions(); | |
print('\n-------------Issue demo---------------\n'); | |
updatePositionIssue(pos.top); | |
print('positionAttr: ${pos.top}'); | |
updatePositionIssue(pos.left); | |
print('positionAttr: ${pos.left}'); | |
updatePositionIssue(pos.right); | |
print('positionAttr: ${pos.right}'); |
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 'package:flutter/foundation.dart'; | |
import 'package:flutter/material.dart'; | |
const masterItemTileUnselectedColor = Color(0xFFECEEF0); | |
const masterItemTileColor = Color(0xFFFFFFFF); | |
class MasterDetailContainer extends StatefulWidget { | |
final Map<EntryTileData, EntryViewData> viewData; |
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
Widget buildClickableTextWithPadding() { | |
return InkWell( | |
onTap: () {}, | |
child: Padding( | |
padding: const EdgeInsets.symmetric(vertical: 8.0), | |
child: Text.rich( | |
TextSpan( | |
children: [ | |
TextSpan( | |
text: 'Edit', |