vengamo_chat_ui 1.0.0+6 copy "vengamo_chat_ui: ^1.0.0+6" to clipboard
vengamo_chat_ui: ^1.0.0+6 copied to clipboard

A Flutter package for displaying chat bubbles with customizable styles and animations. It provides a user-friendly interface for creating chat interfaces in Flutter applications.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:vengamo_chat_ui/chat_bubble.dart';
import 'package:vengamo_chat_ui/theme/app_color.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Vengamo Chat UI',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: VengamoChatScreen(),
    );
  }
}

class VengamoChatScreen extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Vengamo Chat'),
      ),
      body: VengamoChatUI(
        senderBgColor: AppColors.softGreenColor,
        receiverBgColor: AppColors.white,
        isSender: true,
        isNextMessageFromSameSender: false,
        status: "delivered",
        text: "Yolla :) Vengamo Community",
      ), // Use Vengamo Chat UI component here
    );
  }
}
15
likes
0
pub points
70%
popularity

Publisher

verified publishervengamo.com

A Flutter package for displaying chat bubbles with customizable styles and animations. It provides a user-friendly interface for creating chat interfaces in Flutter applications.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

cupertino_icons, flutter, google_fonts

More

Packages that depend on vengamo_chat_ui