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 'dart:async'; | |
| import 'dart:math'; | |
| import 'dart:ui'; | |
| void main() => runApp(WaveDemoApp()); | |
| class WaveDemoApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { |
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
| #!/bin/bash | |
| DIST_DEPS=0 | |
| CENTOS_DEPS=0 | |
| GCONF_COMPILE=0 | |
| GCONF_INSTALL=0 | |
| PIXBUF_INSTALL=0 | |
| PIXBUF_COMPILE=0 |
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
| apply plugin: 'com.jfrog.bintray' | |
| version = libraryVersion | |
| task sourcesJar(type: Jar) { | |
| from android.sourceSets.main.java.srcDirs | |
| classifier = 'sources' | |
| } | |
| task javadoc(type: Javadoc) { |
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
| apply plugin: 'com.jfrog.bintray' | |
| version = libraryVersion | |
| task sourcesJar(type: Jar) { | |
| from android.sourceSets.main.java.srcDirs | |
| classifier = 'sources' | |
| } | |
| task javadoc(type: Javadoc) { |
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
| public class GroupViewHolder extends MainViewHolder { | |
| @InjectView ( R.id.groupTitle ) | |
| TextView mTitle; | |
| @InjectView ( R.id.groupContent ) | |
| TextView mContent; | |
| public GroupViewHolder ( View itemView ) { | |
| super ( itemView ); |