Skip to content

Commit

Permalink
v1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
prahack committed May 15, 2021
1 parent e08a18e commit 4a47f25
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.0.0] - 15/05/2021

* Add `DateChip` widget

## [0.8.1] - 26/04/2021

* set priority for message status tick (seen > delivered > sent)
Expand Down
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add this to your package's `pubspec.yaml` file:

```yaml
dependencies:
chat_bubbles: ^0.8.1
chat_bubbles: ^1.0.0
```
## Usage
Expand All @@ -28,7 +28,7 @@ Then you just have to import the package with
import 'package:chat_bubbles/chat_bubbles.dart'
```

Now you can use this plugin to implement various types of Chat Bubbles.
Now you can use this plugin to implement various types of Chat Bubbles and Date chips.

## Example

Expand All @@ -51,6 +51,17 @@ Now you can use this plugin to implement various types of Chat Bubbles.
),
```

### Date Chip example

<img src="https://github.com/prahack/chat_bubbles/blob/master/images/screenshots/datechip.png?raw=true" width="237" height="58" />

```dart
DateChip(
date: new DateTime(2021, 5, 7),
color: Color(0x558AD3D5),
),
```

### Main example (Chat View)

<img src="https://github.com/prahack/chat_bubbles/blob/master/images/screenshots/screenshot_1.png?raw=true" width="250" height="450" />
Expand Down
Binary file added images/screenshots/datechip.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: chat_bubbles
description: Flutter chat bubble widgets, similar to Whatsapp and more shapes. Easy to use and implement
chat bubbles.
version: 0.8.1
version: 1.0.0
homepage: https://github.com/prahack/chat_bubbles

environment:
Expand Down

0 comments on commit 4a47f25

Please sign in to comment.