chat_index_bar 1.0.0 chat_index_bar: ^1.0.0 copied to clipboard
The custom input box can implement the TextView function of iOS, that is, it can support multi-line text input, support basic text operations such as scrolling and maximum character limit, and is conv [...]
import 'package:flutter/material.dart';
import 'friends_page.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'use cases for chat index bar.',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.standard,
),
home: const FriendsPage(),
);
}
}