chat_index_bar 1.0.0 copy "chat_index_bar: ^1.0.0" to clipboard
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 [...]

example/main.dart

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(),
    );
  }
}
1
likes
0
pub points
0%
popularity

Publisher

unverified uploader

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 convenient for users to input and edit text.

Homepage

License

unknown (license)

Dependencies

flutter

More

Packages that depend on chat_index_bar