message_item 0.0.2 copy "message_item: ^0.0.2" to clipboard
message_item: ^0.0.2 copied to clipboard

outdated

A widget to display message with items.In a modern messaging app, various items must be displayed alongside text in a message like user picture, message time, user avatars, reaction, and so on.This ch [...]

example/lib/main.dart

import 'package:flutter/material.dart';

import 'package:message_item/message_item.dart';

void main(){
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const MessageWidget(
        id: 1,
        name: 'FriendlyOstrich',
        imageUrl: 'assets/avatar2.png',
        messages:  'zxc',
        time: '2d',
        repNo: '1 REPLY',
        no: 1);
  }
}
9
likes
0
points
26
downloads

Publisher

unverified uploader

Weekly Downloads

A widget to display message with items.In a modern messaging app, various items must be displayed alongside text in a message like user picture, message time, user avatars, reaction, and so on.This chat message widget provide all of these functionality.Our widget is completely customizable. You can add or remove any component based on your needs. We also provide UI customization. You may modify the UI and colours to suit your needs.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on message_item