Skip to content

Instantly share code, notes, and snippets.

@cnruby
Created December 7, 2019 22:07
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 cnruby/c02b905929427860cfc08fa5bde4b365 to your computer and use it in GitHub Desktop.
Save cnruby/c02b905929427860cfc08fa5bde4b365 to your computer and use it in GitHub Desktop.
Flutter App 32: Change the class StatelessWidget to class StatefulWidget
import 'package:flutter/material.dart';
void main() {
runApp(new FriendlychatApp());
}
class FriendlychatApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new MaterialApp(
title: "Friendlychat",
home: new ChatScreen(),
);
}
}
/*
class ChatScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(title: new Text("Friendlychat")),
);
}
}
*/
class ChatScreen extends StatefulWidget {
@override
State createState() => new ChatScreenState();
}
class ChatScreenState extends State<ChatScreen> {
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(title: new Text("Friendlychat")),
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment