Skip to content

Commit 9c4b628

Browse files
authored
Merge pull request #63 from rasitayaz/dev
3.2.2
2 parents 0b11d98 + f1fd550 commit 9c4b628

File tree

6 files changed

+247
-227
lines changed

6 files changed

+247
-227
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 3.2.2
2+
3+
* Fixed exceptions thrown from bouncing widget. [#57](https://github.com/rasitayaz/flutter-pie-menu/issues/57)
4+
* Fixed inconsistency in menu child positioning when the scroll position changes while the menu is open.
5+
16
## 3.2.1
27

38
* Fixed some stateful widgets are trying to set their state after being disposed.

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ A Flutter package providing a highly customizable circular/radial context menu,
2323
- [Customization](#customization)
2424
- [Button themes](#button-themes)
2525
- [Custom button widgets](#custom-button-widgets)
26-
- [Adjust display angle of menu buttons](#adjust-display-angle-of-menu-buttons)
27-
- [Place the menu at a specific position](#place-the-menu-at-a-specific-position)
26+
- [Display angle of menu buttons](#display-angle-of-menu-buttons)
27+
- [Specific menu position](#specific-menu-position)
2828
- [Tap, long press or right click to open the menu](#tap-long-press-or-right-click-to-open-the-menu)
29-
- [Controllers and callbacks](#controllers-and-callbacks)
29+
- [Controllers and callbacks](#controllers-and-callbacks)
3030
- [Contributing](#contributing)
3131
- [Donation](#donation)
3232

@@ -141,7 +141,7 @@ PieAction.builder(
141141
),
142142
```
143143

144-
### Adjust display angle of menu buttons
144+
### Display angle of menu buttons
145145

146146
If you don't want the dynamic angle calculation and have the menu appear at a fixed angle, set `customAngle` and `customAngleAnchor` attributes of `PieTheme`.
147147

@@ -154,7 +154,7 @@ PieTheme(
154154

155155
You can also use `customAngleDiff` or `spacing` to adjust the angle between buttons, and `angleOffset` to rotate the menu.
156156

157-
### Place the menu at a specific position
157+
### Specific menu position
158158

159159
Use `menuAlignment` attribute of `PieTheme` to make the menu appear at a specific position regardless of the pressed point. Combine it with `menuDisplacement` to fine-tune the position.
160160

@@ -184,7 +184,7 @@ PieTheme(
184184
),
185185
```
186186

187-
### Controllers and callbacks
187+
## Controllers and callbacks
188188

189189
To open, close or toggle a menu programmatically, assign a `PieMenuController` to it.
190190

example/ios/Runner/AppDelegate.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import UIKit
22
import Flutter
33

4-
@UIApplicationMain
4+
@main
55
@objc class AppDelegate: FlutterAppDelegate {
66
override func application(
77
_ application: UIApplication,

0 commit comments

Comments
 (0)