social_app_template 0.0.2 copy "social_app_template: ^0.0.2" to clipboard
social_app_template: ^0.0.2 copied to clipboard

outdated

Template to create a social app.

example/lib/main.dart

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);

  // This widget is the root of your application.
  @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 StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.black,
      body: Center(child: SocialApp.templateWithExample()),
    );
  }
}