CLICK ME
yes, even hidden code blocks!
print("hello world!")| import 'dart:ui'; | |
| import 'package:flutter/foundation.dart'; | |
| import 'package:flutter/material.dart'; | |
| const Duration _sideSheetEnterDuration = Duration(milliseconds: 250); | |
| const Duration _sideSheetExitDuration = Duration(milliseconds: 200); | |
| const Curve _modalSideSheetCurve = decelerateEasing; | |
| const double _minFlingVelocity = 700.0; | |
| const double _closeProgressThreshold = 0.5; |
| void main() { | |
| runApp(_SwitchingThemeApp()); | |
| } | |
| /// Properties that help me keep track of the example being run. | |
| bool _useMaterial = false; | |
| class _SwitchingThemeApp extends StatefulWidget { | |
| @override | |
| _SwitchingThemeAppState createState() => _SwitchingThemeAppState(); |
| { | |
| "version": "2.0.0", | |
| "reveal": "silent", | |
| "tasks": [{ | |
| "taskName": "Start Android Emulator", | |
| "type": "shell", | |
| "isBackground": true, | |
| "command": "~/Library/Android/sdk/tools/emulator", | |
| "args": [ | |
| "-avd", |
| /** | |
| * Will generate versionCode from versionName that follows Semantic Versioning | |
| */ | |
| ext { | |
| /** | |
| * Application version is located version variable. | |
| * And should follow next policy: | |
| * X1.X2.X3-type-flavor, where X - any digits and type is optional alphabetical suffix. | |
| * X1 - major version | |
| * X2 - minor version |
| <# | |
| .SYNOPSIS | |
| Records a video to a temp file on the device then downloads to local system and deletes temp file. | |
| .PARAMETER DestFile | |
| Destination path and file on local file system | |
| .NOTES | |
| Author : Frode Nilsen <nilzor@gmail.com> | |
| .EXAMPLE | |
| And-Record c:\temp\video.mp4 | |
| .LINK #> |
| .bgimage { | |
| width:100%; | |
| height:500px; | |
| background: url('https://images.unsplash.com/photo-1438109491414-7198515b166b?q=80&fm=jpg&s=cbdabf7a79c087a0b060670a6d79726c'); | |
| background-repeat: no-repeat; | |
| background-position: center; | |
| background-size:cover; | |
| background-attachment: fixed; | |
| } | |
| .bgimage h5 { |
| /* | |
| * Copyright (C) 2014 The Android Open Source Project | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |
| def toCamelCase(String string) { | |
| String result = "" | |
| string.findAll("[^\\W]+") { String word -> | |
| result += word.capitalize() | |
| } | |
| return result | |
| } | |
| afterEvaluate { project -> | |
| Configuration runtimeConfiguration = project.configurations.getByName('compile') |
| /* | |
| * Copyright 2013 Square Inc. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * http://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |