diff --git a/README.md b/README.md index 500cb0f..5da769d 100644 --- a/README.md +++ b/README.md @@ -85,6 +85,11 @@ Download sample apk as shown in example from releases. | fullTransitionValue | `double` | Sets the scroll distance or sensitivity for a complete swipe. | 400.0 | This transition value can be used to increase or decrease the sensitivity of the swipe. 100.0 would make swipe really fast with even a bit of drag | | initialPage | `int` | Set the initial Page | 0 | Should not be >= no.of pages or smaller than 0 | | enableSlideIcon |`bool` | Used to enable Slide icon to the right for where the wave would originate | false | Gives a ios style arrow to right side of the screen. Might include modification to it soon. | +| slideIconWidget |`Widget` | Create your own icon and add here | Icon(Icons.arrow_back_ios) | You can use icons from Icons package. Thanks to PR #10 | +| positionSlideIcon |`double` | Position your icon in y-axis at right side of the screen | 0.54 | Range from -1 to 1, -1 represents extreme top and 1 represent extreme bottom. Soon add x-axis position, if required! | +| enableLoop |`bool` | Enable or disable pages recurrence. | true | If you dont want to make pages to be in the loop, use this attribute. | +| waveType |`WaveType` | Select the type of reveal you want. | WaveType.liquidReveal | You can use circularReveal, more coming soon. Import Helpers.dart file if Autoimport doesn't work. | + ### Credits - [Cuberto](https://github.com/Cuberto) for awesome [Liquid Swipe](https://github.com/Cuberto/liquid-swipe) in Swift.