higorlapa/chat-list-flutter-package
Ein Chatliste-Widget-Paket, um Ihre Chat-Anwendung zu starten
- Stars
- 5
- Forks
- 5
- Letzter Push (UTC)
- 10.03.2021
- Projektstatus
- Aktiv
SprachenDartKotlinSwiftHTMLObjective-C
Verwendete Abhängigkeiten
Abhängigkeiten 3 Einträge
- flutter
{"sdk":"flutter"} - bubble
^1.2.1 - flutter_testEntwicklung
{"sdk":"flutter"}
Original-README
Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.
Projekt-README ein-/ausklappen
chat_list
A flutter package to incorporate a chat view in a simple way and jump start your chat application.
Example
See source
Usage
//Create a list with messages
final List<MessageWidget> _messageList = [
MessageWidget(
content: "Hi, Bill! This is the simplest example ever.",
ownerType: OwnerType.sender,
ownerName: "Higor Lapa"),
MessageWidget(
content:
"Let's make it better , Higor. Custom font size and text color",
textColor: Colors.black38,
fontSize: 18.0,
ownerType: OwnerType.receiver,
ownerName: "Bill Gates"),
];
final ScrollController _scrollController = ScrollController();
//Place the widget inside your build function
ChatList(
children: _messageList,
scrollController: _scrollController
),
https://github.com/lapadev/chat-list-flutter-package/blob/master/example/screenshots/example.png?raw=true