Skip to content

Commit

Permalink
[0.9.4] Added endCurtainInitVisible and alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Zabadam committed May 1, 2021
1 parent 8a82373 commit 63b1cb9
Show file tree
Hide file tree
Showing 11 changed files with 97 additions and 71 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# 📜 Curtains
##### **WORK IN PROGRESS**
## **[0.9.4] - 30 APR 21**
- Added 🆕 parameters: `endCurtainInitVisible`, which should be self explanatory; and `alignment`, similarly so.

## **[0.9.3+1] - 25 APR 21**
- Corrected `export 'package:flutter/widgets.dart';`.

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"inputs":[],"outputs":[]}
Binary file added example/build/app/outputs/apk/debug/app-debug.apk
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@
"kind": "Directory"
},
"applicationId": "app.zaba.curtains",
"variantName": "processReleaseResources",
"variantName": "processDebugResources",
"elements": [
{
"type": "SINGLE",
"filters": [],
"versionCode": 3,
"versionName": "1.0.2",
"outputFile": "app-release.apk"
"outputFile": "app-debug.apk"
}
]
}
Binary file not shown.
Binary file not shown.
2 changes: 2 additions & 0 deletions example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import 'package:flutter/services.dart';
import 'package:flutter/material.dart';

import 'package:curtains/curtains.dart';
import 'package:flutter_scroll_shadow/flutter_scroll_shadow.dart';

import 'source_code.dart';

Expand Down Expand Up @@ -213,6 +214,7 @@ class CurtainsDemoVertical extends StatelessWidget {
return Expanded(
child: Curtains(
elevation: 24, // Consider [Material.elevation], but see [Elevation].🕴
// endCurtainInitVisible: false,
child: ListView(
physics: const BouncingScrollPhysics(),
children: generatedListVertical,
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.9.3+1"
version: "0.9.4"
flutter:
dependency: "direct main"
description: flutter
Expand Down
1 change: 1 addition & 0 deletions lib/curtains.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@
library curtains;

export 'package:shadows/shadows.dart';

export 'src/curtains.dart';
Loading

0 comments on commit 63b1cb9

Please sign in to comment.