Last active
November 28, 2018 03:39
-
-
Save ChangJoo-Park/38db22a704130dfc008850f67f20f5a0 to your computer and use it in GitHub Desktop.
Android Studio flutter File Template
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'; | |
class ${Class_name} extends StatefulWidget{ | |
${Class_name}(); | |
@override | |
${Class_name}State createState() => ${Class_name}State(); | |
} | |
class ${Class_name}State extends State<${Class_name}>{ | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: _buildAppBar(), | |
body: _buildBody(), | |
); | |
} | |
AppBar _buildAppBar() { | |
return AppBar(); | |
} | |
Container _buildBody() { | |
return Container(); | |
} | |
} |
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'; | |
class ${Class_name} extends StatelessWidget{ | |
@override | |
Widget build(BuildContext context) { | |
// TODO: Implement build | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
퍼가요~ ❤️