All Projects → Manik1094 → Flutter-Chat-Bar

Manik1094 / Flutter-Chat-Bar

Licence: other
Link to the package -. https://pub.dartlang.org/packages/flutter_chat_bar

Programming Languages

dart
5743 projects
objective c
16641 projects - #2 most used programming language
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Flutter-Chat-Bar

flutter-UI
将Flutter各种Widget各种API📘都实现一次。喜欢请Star。
Stars: ✭ 67 (+71.79%)
Mutual labels:  flutter-examples, flutter-package
flutter sliding tutorial
User onboarding library with smooth animation of objects and background colors
Stars: ✭ 127 (+225.64%)
Mutual labels:  flutter-examples, flutter-package
build-viking-sample
Sample app for Build Viking.
Stars: ✭ 31 (-20.51%)
Mutual labels:  chat-application, flutter-examples
progressive image
A flutter widget that progressively loads large images using Low-Quality Image Placeholders.
Stars: ✭ 28 (-28.21%)
Mutual labels:  flutter-examples, flutter-package
flutter-app
Full Feature Todos Flutter Mobile app with fireStore integration.
Stars: ✭ 138 (+253.85%)
Mutual labels:  flutter-examples, flutter-package
invmovieconcept1
True Cross platform UI design featuring complex scroll based animations powered by flutter
Stars: ✭ 55 (+41.03%)
Mutual labels:  flutter-examples, flutter-animation
SocialMedia-App
A fully functional social media app built with flutter with multiple features
Stars: ✭ 646 (+1556.41%)
Mutual labels:  chat-application, flutter-examples
CustomSwitch
Custom Switch package created in Flutter
Stars: ✭ 56 (+43.59%)
Mutual labels:  flutter-examples, flutter-package
barcode.flutter
barcode generate library for Flutter
Stars: ✭ 58 (+48.72%)
Mutual labels:  flutter-examples, flutter-package
flutter-inspiration-app-ui
Flutter Inspiration Application Design - day 1
Stars: ✭ 164 (+320.51%)
Mutual labels:  flutter-examples, flutter-animation
flutter-docset
Community driven Flutter Docset for Dash.app
Stars: ✭ 56 (+43.59%)
Mutual labels:  flutter-examples, flutter-package
fancy bar
A fancy yet beautiful animated widget for your Flutter apps
Stars: ✭ 33 (-15.38%)
Mutual labels:  flutter-examples, flutter-package
Flutter-Apps
🌀 This is mainly focus on a complete application for production
Stars: ✭ 18 (-53.85%)
Mutual labels:  flutter-examples, flutter-package
editable
This library allows you to create editable tables and spreadsheets with ease, either by providing initial row and column count to display an empty table or use it with predefined rows and column data sets.
Stars: ✭ 85 (+117.95%)
Mutual labels:  flutter-examples, flutter-package
Flutter-firestore-auth
Flutter mobile app with firestore authentication including Email and Social auth.
Stars: ✭ 95 (+143.59%)
Mutual labels:  flutter-examples, flutter-package
connectycube-flutter-samples
Code samples for Flutter, based on ConnectyCube platform
Stars: ✭ 64 (+64.1%)
Mutual labels:  chat-application, flutter-examples
swipedetector
A Flutter package to detect up, down, left, right swipes.
Stars: ✭ 34 (-12.82%)
Mutual labels:  flutter-examples, flutter-package
Interactive-Add-Button-Layout
Custom Layout with interactive add button to impove your UI and UX .
Stars: ✭ 20 (-48.72%)
Mutual labels:  flutter-examples, flutter-package
Flutter-Custom-Carousel
Flutter Custom Carousel Application Design and Animation - day 18
Stars: ✭ 44 (+12.82%)
Mutual labels:  flutter-animation, flutter-package
flutter bottom reveal
An animated bottom reveal widget
Stars: ✭ 15 (-61.54%)
Mutual labels:  flutter-animation, flutter-package

flutter_chat_bar

Say Thanks!

A new Flutter package which helps you to implement Animated chat bar Widget in your app.

The source code is 100% Dart, and everything resides in the /lib folder.

Show some ❤️ and star the repo to support the project

GitHub followers Twitter Follow

Open Source Love

💻 Installation

In the dependencies: section of your pubspec.yaml, add the following line:

flutter_chat_bar: <latest_version>

Import in your project:

import 'package:flutter_chat_bar/flutter_chat_bar.dart';

Basic Usage

class HomePage extends StatelessWidget {
  
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Flutter Chat Bar'),
      ),
      body: Center(
        child: FlutterChatBar(
          height: 60.0,
          width: 370.0,
          color: Colors.blue[800],
          firstChild:  FirstChild(),
          secondChild:  SecondChild(),
        ),
      ),
    );
  }
}

class FirstChild extends StatelessWidget {
  const FirstChild({
    Key key,
  }) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Container(
      height: 60.0,
      width: 300.0,
      decoration: BoxDecoration(
          borderRadius: BorderRadius.circular(30.0),
          color: Colors.white30),
      child: SafeArea(
        left: true,
        right: true,
        top: true,
        bottom: true,
        child: Padding(
          padding: const EdgeInsets.all(16.0),
          child: Text(
            'Message',
            style: TextStyle(color: Colors.white, fontSize: 20.0),
          ),
        ),
      ),
    );
  }
}

class SecondChild extends StatelessWidget {
  const SecondChild({
    Key key,
  }) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return Row(
      mainAxisAlignment: MainAxisAlignment.center,
      mainAxisSize: MainAxisSize.max,
      children: <Widget>[
        Padding(
          padding: const EdgeInsets.only(
              left: 12.0, right: 12.0, top: 4.0, bottom: 4.0),
          child: CircleAvatar(
            radius: 30.0,
            backgroundColor: Colors.white30,
            child: Icon(
              Icons.camera,
              color: Colors.white,
            ),
          ),
        ),
        Padding(
          padding: const EdgeInsets.only(
              left: 12.0, right: 12.0, top: 4.0, bottom: 4.0),
          child: CircleAvatar(
            radius: 30.0,
            backgroundColor: Colors.white30,
            child: Icon(
              Icons.photo_size_select_actual,
              color: Colors.white,
            ),
          ),
        ),
        Padding(
          padding: const EdgeInsets.only(
              left: 12.0, right: 12.0, top: 4.0, bottom: 4.0),
          child: CircleAvatar(
            radius: 30.0,
            backgroundColor: Colors.white30,
            child: Icon(
              Icons.videocam,
              color: Colors.white,
            ),
          ),
        ),
      ],
    );
  }
}

Demo

flutter_chat_bar

👨 Developed By

Manik Gupta

👍 How to Contribute

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

📃 License

Copyright (c) 2019 Manik Gupta

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Getting Started

For help getting started with Flutter, view our online documentation.

For help on editing package code, view the documentation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].