I hereby claim:
- I am muncman on github.
- I am muncman (https://keybase.io/muncman) on keybase.
- I have a public key ASCPBE4GgohZ2wPDNZCgbLQ0dOZOx9AdSv3v6-MsuoAo6go
To claim this, I am signing this object:
| void main() async { | |
| oneWay(); | |
| anotherWay(); | |
| orThisWay(); | |
| } | |
| String? getNullable() { | |
| if (DateTime.now().second % 2 == 0) { | |
| return 'not null'; | |
| } |
| import 'dart:async'; | |
| import 'package:flutter/material.dart'; | |
| import 'package:flutter/cupertino.dart'; | |
| void main() => runApp(MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| # Set in Product | Scheme | Edit Scheme | Build | Post-actions as a new Run Script item. | |
| # echo Restoring build number | |
| # ${PROJECT_DIR}/Scripts/restore_build_number.sh | |
| # Select your target in the "Provide build settings from" dropdown. | |
| set -e | |
| if [ -z "$SRCROOT" ] | |
| then | |
| echo "Run this from the project root." |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| <html lang='en-US' xml:lang='en-US' xmlns='http://www.w3.org/1999/xhtml'> | |
| <head> | |
| <title>VacationTrade</title> | |
| <meta content='text/html; charset=utf-8' http-equiv='Content-Type' /> | |
| </head> | |
| <body> | |
| <p><a href="http://www.munc.com/" rel="bookmark">More info via a relationship link popup</a></p> | |
| <p><a href="http://www.munc.com/" rel="bookmark">More info via a relationship link popup</a></p> | |
| <p><a href="http://www.munc.com/" rel="bookmark">More info via a relationship link popup</a></p> |
| /* R O U N D E D C O R N E R S */ | |
| /* TODO: test differing KHTML formats across platforms. */ | |
| /* TODO: get version specifics for Opera options. */ | |
| .round_all { | |
| -opera-border-radius: 5px; | |
| -o-border-radius: 5px; | |
| -khtml-border-radius: 5px; | |
| -moz-border-radius: 5px; | |
| -webkit-border-radius: 5px; |
| -(void)itShouldUpdateTheOutputFromTheInput { | |
| UIQuery *app = [UIQuery withApplication]; | |
| UILabel *outputLabel = [self.app.label text:@"Update Me"]; | |
| [app.textField setText:@"testing 1-2-3"]; | |
| [app.button touch]; | |
| [outputLabel.should.have text:@"testing 1-2-3"]; | |
| } |