Skip to content

Commit

Permalink
[update] v0.0.9 format code up -> pub point
Browse files Browse the repository at this point in the history
  • Loading branch information
CHUNG-HAO committed Jun 9, 2024
1 parent e51904b commit 3575d70
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .dart_tool/package_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@
"languageVersion": "3.3"
}
],
"generated": "2024-06-09T09:54:10.130369Z",
"generated": "2024-06-09T10:01:52.063247Z",
"generator": "pub",
"generatorVersion": "3.4.3",
"flutterRoot": "file:///opt/homebrew/Caskroom/flutter/3.16.7/flutter",
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.0.8
## 0.0.9

* TODO: Fixed bug
* TODO: update doc
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add the following dependency in your `pubspec.yaml` file:

```yaml
dependencies:
flutter_buttombar_chung: ^0.0.8
flutter_buttombar_chung: ^0.0.9
```
## Usage
Expand Down
1 change: 0 additions & 1 deletion lib/src/flutter_buttombar_chung_painter.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import 'dart:io';
import 'package:flutter/material.dart';

Expand Down
3 changes: 2 additions & 1 deletion lib/src/flutter_buttombar_chung_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ class FlutterButtombarChungWidget extends StatelessWidget {
final String? label;
final TextStyle? labelStyle;

const FlutterButtombarChungWidget({super.key,
const FlutterButtombarChungWidget({
super.key,
required this.onTap,
required this.position,
required this.length,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_buttombar_chung
description: " The customized Flutter bottom navigation bar has a curved design and advanced functions, and has a wave-like effect, which is very smooth."
version: 0.0.8
version: 0.0.9
homepage: https://chung-hong-hao.web.app
repository: https://github.com/CHUNG-HAO/flutter_buttombar_chung

Expand Down
3 changes: 2 additions & 1 deletion test/flutter_buttombar_chung_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ void main() {
// Tap the second item and verify the animation is triggered
await tester.tap(find.text('Search'));
await tester.pump(); // Start the animation
await tester.pump(const Duration(milliseconds: 300)); // Halfway through animation
await tester
.pump(const Duration(milliseconds: 300)); // Halfway through animation

// Verify intermediate animation state
// Check for partial translation or opacity changes
Expand Down

0 comments on commit 3575d70

Please sign in to comment.