flutter_chat_list 1.0.5 flutter_chat_list: ^1.0.5 copied to clipboard
Provide enhanced list view include jump index, keep position etc.
import 'package:flutter/material.dart';
import 'package:flutter_easyloading/flutter_easyloading.dart';
import 'route.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 MaterialApp(
title: 'Section View Demo',
routes: SectionViewRoute.routes,
theme: ThemeData(
primarySwatch: Colors.blue,
),
builder: EasyLoading.init(),
);
}
}