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 'package:english_words/english_words.dart'; | |
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |
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
...... other js codes ...... | |
"shell": { | |
"title": "Shell", | |
"owner": "sgon00" // based on zeitgeist87's bash | |
}, | |
...... other js codes ...... |
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
syn match dartFunction "\zs\(\k\w*\)*\s*\ze(" | |
hi! link dartFunction Function | |
syn match myCamelCase '\v(<_*\u\i*>)+' | |
hi! link myCamelCase Type | |
syntax keyword flutterConstant immutable kAlwaysCompleteAnimation kAlwaysDismissedAnimation | |
\ kBackMouseButton kBottomNavigationBarHeight kDoubleTapMinTime kDoubleTapSlop kDoubleTapTimeout | |
\ kDoubleTapTouchSlop kElevationToShadow kFloatingActionButtonMargin kFloatingActionButtonSegue | |
\ kFloatingActionButtonTurnInterval kForwardMouseButton kHoverTapSlop kHoverTapTimeout kJumpTapTimeout |
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
<video id="video_1" class="video-js vjs-default-skin vjs-big-play-centered" | |
controls preload="auto" width="267" height="150" | |
poster="img/videos/1.jpg" | |
data-setup='{"autoplay": false}'> | |
<source src="videos/1.mp4" type='video/mp4' /> | |
</video> |