Skip to content

Instantly share code, notes, and snippets.

@nafidurmus
Last active December 27, 2020 10:37
Show Gist options
  • Save nafidurmus/25ee68c624a2b631e2ddb903a095e874 to your computer and use it in GitHub Desktop.
Save nafidurmus/25ee68c624a2b631e2ddb903a095e874 to your computer and use it in GitHub Desktop.
import 'package:flutter/material.dart';
class RssHomePage extends StatefulWidget {
RssHomePage({Key key}) : super(key: key);
@override
_RssHomePageState createState() => _RssHomePageState();
}
class _RssHomePageState extends State<RssHomePage> {
@override
Widget build(BuildContext context) {
return Container(
color: Colors.red,
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment