Campaign links:
View main.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
void main() { | |
print(ApiResolver.v1?.foo); | |
print(ApiResolver.v1?.bar); | |
print(ApiResolver.v1?.baz); | |
print(ApiResolver.v2?.foo); | |
print(ApiResolver.v2?.bar); |
View main.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
void main() { | |
final x = 56.65; | |
final y = x - 56; | |
print(y); | |
} |
View main.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
void main() { | |
final x = 256; | |
var s = Stopwatch(); | |
var bitwiseSumm = 0; | |
var intDivSumm = 0; | |
var divSumm = 0; | |
for (var i = 0; i < 257; i++) { |
View main.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
// onGenerateRoute callback navigation | |
import 'package:flutter/material.dart'; | |
void main() => runApp(App()); | |
class App extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |
View main.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
// static navigation | |
import 'package:flutter/material.dart'; | |
void main() => runApp(App()); | |
class App extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |
View main.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
// Direct navigation | |
import 'package:flutter/material.dart'; | |
void main() => runApp(App()); | |
class App extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |
View keybase.md
Keybase proof
I hereby claim:
- I am nikotron on github.
- I am nikotron (https://keybase.io/nikotron) on keybase.
- I have a public key ASA0ra2QvvBLdZsgVkDzlANsNR6gHbxIMqchADvyNpQGBgo
To claim this, I am signing this object:
View dart-sdk-updater.sh
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
#!/bin/sh | |
chan="dev" | |
os=$(uname -s) | |
if [[ ${os} == "Linux" ]] | |
then | |
os="linux" | |
else | |
os="macos" |
View RealmString.java
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 ru.wowworks.wowworker.utils.type; | |
import com.squareup.moshi.FromJson; | |
import com.squareup.moshi.ToJson; | |
import io.realm.RealmList; | |
import io.realm.RealmObject; | |
public class RealmString extends RealmObject { |
NewerOlder