From 2134134d4769faa0e639ca5a1e567765fff1eb31 Mon Sep 17 00:00:00 2001 From: Sahdeep Singh Date: Tue, 9 Jul 2019 20:57:15 +0530 Subject: [PATCH] minor changes --- CHANGELOG.md | 6 ++++-- example/lib/main.dart | 6 +++--- example/pubspec.lock | 2 +- pubspec.yaml | 8 ++++---- test/liquid_swipe_test.dart | 18 +----------------- 5 files changed, 13 insertions(+), 27 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41cc7d8..328e512 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ -## 0.0.1 +## 1.0.0 + +* Initialized +* Add waves to containers through clipper -* TODO: Describe initial release. diff --git a/example/lib/main.dart b/example/lib/main.dart index 53e447b..f0b6ba3 100644 --- a/example/lib/main.dart +++ b/example/lib/main.dart @@ -104,21 +104,21 @@ class MyApp extends StatelessWidget { Column( children: [ new Text( - "Its", + "Liked?", style: TextStyle( fontSize: 30, fontFamily: "Billy", fontWeight: FontWeight.w600), ), new Text( - "Third", + "Fork!", style: TextStyle( fontSize: 30, fontFamily: "Billy", fontWeight: FontWeight.w600), ), new Text( - "View", + "Give Star!", style: TextStyle( fontSize: 30, fontFamily: "Billy", diff --git a/example/pubspec.lock b/example/pubspec.lock index 13e4f49..8c23448 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -52,7 +52,7 @@ packages: path: ".." relative: true source: path - version: "0.0.1" + version: "1.0.0" matcher: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index fd55d4f..a15cb6e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,8 +1,8 @@ name: liquid_swipe -description: A new Flutter plugin. -version: 0.0.1 -author: -homepage: +description: A Flutter plugin to implement liquid Swipe effect to provided containers. +version: 1.0.0 +author: Sahdeep Singh +homepage: https://github.com/iamSahdeep/liquid_swipe_flutter environment: sdk: ">=2.1.0 <3.0.0" diff --git a/test/liquid_swipe_test.dart b/test/liquid_swipe_test.dart index 327926d..534cb37 100644 --- a/test/liquid_swipe_test.dart +++ b/test/liquid_swipe_test.dart @@ -1,21 +1,5 @@ -import 'package:flutter/services.dart'; -import 'package:flutter_test/flutter_test.dart'; -import 'package:liquid_swipe/liquid_swipe.dart'; -void main() { - const MethodChannel channel = MethodChannel('liquid_swipe'); - - setUp(() { - channel.setMockMethodCallHandler((MethodCall methodCall) async { - return '42'; - }); - }); - tearDown(() { - channel.setMockMethodCallHandler(null); - }); +void main() { - test('getPlatformVersion', () async { - expect(await LiquidSwipe, '42'); - }); }