Skip to content

Commit

Permalink
Minor Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
aliyigitbireroglu committed Oct 15, 2020
1 parent 810320e commit 40c7d2d
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 7 deletions.
6 changes: 5 additions & 1 deletion cupertino_stackview/CHANGELOG.md
@@ -1,4 +1,8 @@
## [1.0.7] - 01.06.2020
## [1.0.8] - 15.10.2020

* Minor changes.

## [1.0.7] - 11.10.2020

* Minor changes.

Expand Down
6 changes: 5 additions & 1 deletion cupertino_stackview/example/CHANGELOG.md
@@ -1,4 +1,8 @@
## [1.0.7] - 01.06.2020
## [1.0.8] - 15.10.2020

* Minor changes.

## [1.0.7] - 11.10.2020

* Minor changes.

Expand Down
Empty file modified cupertino_stackview/example/lib/main.dart 100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion cupertino_stackview/example/pubspec.lock
Expand Up @@ -49,7 +49,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.6"
version: "1.0.7"
fake_async:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion cupertino_stackview/example/pubspec.yaml
@@ -1,6 +1,6 @@
name : example
description : Example Project for cupertino_stackview.
version : 1.0.7
version : 1.0.8
author : Ali Yigit Bireroglu <aliyigitbireroglu@gmail.com>
repository : https://github.com/aliyigitbireroglu/flutter-cupertino-stackview
homepage : https://www.cosmossoftware.coffee
Expand Down
12 changes: 10 additions & 2 deletions cupertino_stackview/lib/cupertino_stackview_controller.dart
Expand Up @@ -10,6 +10,7 @@ import 'package:flutter/cupertino.dart';

import 'package:cupertino_stackview/cupertino_stackview.dart';
import 'package:cupertino_stackview/misc.dart';
import 'package:flutter/material.dart';

///The class that is responsible of all Cupertino StackView related logic.
class CupertinoStackViewController {
Expand Down Expand Up @@ -147,9 +148,16 @@ class CupertinoStackViewController {
_organise();
showCupertinoModalPopup(
context: context,
barrierDismissible: false,
builder: (BuildContext context) {
return _builders[targetNavigation](context, parameters);
return Stack (
children: [
Container (
constraints: BoxConstraints.expand(),
color: Colors.transparent,
),
_builders[targetNavigation](context, parameters),
],
);
});
}
}
Expand Down
2 changes: 1 addition & 1 deletion cupertino_stackview/pubspec.yaml
@@ -1,6 +1,6 @@
name : cupertino_stackview
description : A very easy-to-use navigation tool/widget for having iOS 13 style stacks.
version : 1.0.7
version : 1.0.8
author : Ali Yigit Bireroglu <aliyigitbireroglu@gmail.com>
repository : https://github.com/aliyigitbireroglu/flutter-cupertino-stackview
homepage : https://www.cosmossoftware.coffee
Expand Down

0 comments on commit 40c7d2d

Please sign in to comment.