Skip to content

Commit

Permalink
fix: layout done catching
Browse files Browse the repository at this point in the history
  • Loading branch information
SalihCanBinboga committed Sep 18, 2022
1 parent bfae51e commit 9134f1a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
## 1.0.5

- Update README.md
- fix: Info overlay layout done catching

---

## 1.0.4

- Update README.md

---

## 1.0.3

- Update README.md
Expand Down
2 changes: 1 addition & 1 deletion lib/src/overlays/overlay_entry_layout.dart
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ class _OverlayInfoPopupState extends State<OverlayInfoPopup> {
}

/// Returns true if the layout is mounted.
bool get _isLayoutDone => infoPopupBodySize != null;
bool get _isLayoutDone => _infoPopupBodySize != null;

/// Gets the indicator top position.
double get _getIndicatorTopPosition {
Expand Down
1 change: 0 additions & 1 deletion lib/src/themes/info_popup_arrow_theme.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import 'package:flutter/material.dart' show Color, Colors, Size;
import 'package:info_popup/src/constants/popup_constants.dart';
import 'package:info_popup/src/enums/arrow_direction.dart';


/// [InfoPopupArrowTheme] is used to customize the arrow of the popup.
class InfoPopupArrowTheme {
/// [InfoPopupArrowTheme] is creates a [InfoPopupArrowTheme] constructor.
Expand Down

0 comments on commit 9134f1a

Please sign in to comment.