This file contains hidden or 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 'eventdetails/eventdetails.dart'; | |
class SquanchyFlutterApp extends StatelessWidget { | |
@override | |
build(context: BuildContext): Widget { | |
final theme = ThemeData( | |
primarySwatch: MaterialColor(0XFFE65B77, { |
This file contains hidden or 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
var stack = Stack ( | |
key: 1 | |
Image.asset ( // background photo | |
"assets/texture.jpg" | |
fit: ImageFit.cover | |
height: 600.0 | |
) | |
Positioned ( // headline |
This file contains hidden or 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
analyzer: | |
strong-mode: true | |
linter: | |
rules: | |
- always_declare_return_types | |
- always_specify_types | |
- annotate_overrides | |
- avoid_as | |
- avoid_empty_else | |
- avoid_init_to_null |
This file contains hidden or 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
// Real libraries and modules. | |
library search; | |
import 'dart:async' show Future; | |
import 'package:flutter/http.dart' as http; | |
// Future (aka Promise), type annotations, and top-level functions! | |
// And yes, async/await without translators! | |
Future<List<SearchResult>> fetchResults(String query) async { | |
// single-quote strings, and string interpolation! |
This file contains hidden or 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'; | |
void main() { | |
runApp( | |
new MaterialApp( | |
title: "Flutter Demo", | |
routes: <String, RouteBuilder>{ | |
'/': (RouteArguments args) => new FlutterDemo() | |
} | |
) |
This file contains hidden or 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
sayHi() { | |
print('hi'); | |
} |
This file contains hidden or 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' | |
show | |
BuildContext, | |
Positioned, | |
Stack, | |
State, | |
StatefulComponent, | |
Text, | |
Widget, | |
runApp; |
This file contains hidden or 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
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-drawer-panel/core-drawer-panel.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
#core_header_panel { |
This file contains hidden or 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:convert'; | |
import 'package:smoke/smoke.dart' as smoke; | |
@MirrorsUsed(targets: const [SimpleWithMirrors, Simple], override: '*') | |
import 'dart:mirrors'; | |
class Simple { | |
int id; | |
String name; |
This file contains hidden or 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: testjsinterop | |
description: A sample web application | |
dependencies: | |
browser: any | |
js: any | |
quiver: any |