vengamo_chat_ui 1.0.0+7 copy "vengamo_chat_ui: ^1.0.0+7" to clipboard
vengamo_chat_ui: ^1.0.0+7 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/vengamo_chat_ui.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: Container(
        margin: EdgeInsets.symmetric(horizontal: 15),
        child: const VengamoChatUI(
          senderBgColor: AppColors.backgroundColor,
          receiverBgColor: AppColors.white,
          isSender: true,
          isNextMessageFromSameSender: false,
          status: "delivered",
          text: "Yolla :) Vengamo Community",
          pointer: true,
        ),
      ), // 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