Skip to content

Instantly share code, notes, and snippets.

@boldijar
Created March 13, 2018 17:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save boldijar/b81bd79c61ff62b9af0beb7d2e176c68 to your computer and use it in GitHub Desktop.
Save boldijar/b81bd79c61ff62b9af0beb7d2e176c68 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class SettingsWidget extends StatefulWidget {
SettingsWidget({Key key}) : super(key: key);
@override
_SettingsWidgetState createState() => new _SettingsWidgetState();
}
class _SettingsWidgetState extends State<SettingsWidget> {
@override
Widget build(BuildContext context) {
return new Container(
color: Colors.white,
child: new Center(
child: new Text("Hello Medium"),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment