Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nb312/570c3853ec14cd8e4a5920f12260ec1c to your computer and use it in GitHub Desktop.
Save nb312/570c3853ec14cd8e4a5920f12260ec1c to your computer and use it in GitHub Desktop.
flutter-open-flutter-widgets-06-raise-button-01-start
import "package:flutter/material.dart";
import 'package:flutter_widgets/const/_const.dart';
class RaiseButtonPage extends StatefulWidget {
@override
_RaiseButtonState createState() => _RaiseButtonState();
}
class _RaiseButtonState extends State<RaiseButtonPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(PageName.RAISE_BUTTON),
),
body: SingleChildScrollView(
child: Column(
children: <Widget>[
//our tutorial code.
SizedBox(
height: 300,
)
],
),
),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment