flutter_superchat 1.0.3 flutter_superchat: ^1.0.3 copied to clipboard
Chating Ui Template - You can build a buitiful chat application with few lines of code. Easy to customise and easy to understand the code.
import 'package:flutter/material.dart';
import 'package:super_chat/Pages/OnboardingPage.dart';
import 'package:super_chat/Pages/SplashPage.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
title: 'Flutter Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: SplashPage(),
);
}
}