Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
iamSahdeep committed Jul 9, 2019
1 parent 1847ee4 commit 2134134
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 27 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
@@ -1,3 +1,5 @@
## 0.0.1
## 1.0.0

* Initialized
* Add waves to containers through clipper

* TODO: Describe initial release.
6 changes: 3 additions & 3 deletions example/lib/main.dart
Expand Up @@ -104,21 +104,21 @@ class MyApp extends StatelessWidget {
Column(
children: <Widget>[
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",
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Expand Up @@ -52,7 +52,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.0.1"
version: "1.0.0"
matcher:
dependency: transitive
description:
Expand Down
8 changes: 4 additions & 4 deletions 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 <sahdeepsingh98@gmail.com>
homepage: https://github.com/iamSahdeep/liquid_swipe_flutter

environment:
sdk: ">=2.1.0 <3.0.0"
Expand Down
18 changes: 1 addition & 17 deletions 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');
});
}

0 comments on commit 2134134

Please sign in to comment.