social_app_template 1.0.3
social_app_template: ^1.0.3 copied to clipboard
Package to enable you to create a social app in a very quick way.
import 'package:flutter/material.dart';
import 'package:social_app_template/social_app_template.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(
title: 'Example for Social App',
home: MyHomePage(title: 'Example for a list for posts.'),
);
}
}
class MyHomePage extends StatelessWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: Colors.black,
body: Center(child: SocialApp.templateWithExample()),
);
}
}