Skip to content

cleanup unused local variables #73

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 11, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 20 additions & 18 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
## [1.1.1] - April 10, 2025
Changes include
- Fixed broken package deployment action.

Changes include

- Fixed broken package deployment action.

## [1.1.0] | April 10, 2025

Changes include:

- Modified `Flutterwave.charge()` method to accept a BuildContext parameter.
- Added context.mounted checks to prevent setState calls after widget disposal.
- Enhanced success status check logic to handle different status values ("success" and "completed").
Expand All @@ -17,58 +19,58 @@ Changes include:
- Removed unused dependencies: webview_flutter, modal_bottom_sheet and uuid.
- Update deployment workflow.



## [1.0.7] - February, 2023

Changes include

- Fixed iOS bug where webview couldn't close when close buttons are clicked
- Removed required `name` and `phone number` fields in `Customer` object



## [1.0.6] - October, 2022

Changes include:

- Fixed bug where transaction gets stuck after redirecting on webview
- Fixed iOS build bug by removing inAppBrowser library



## [1.0.5] - October, 2022

Changes include:

- Fixed null when transaction is cancelled.
- Removed modal pop up before launching web view.
- Removed intermediate make payment screen before webview.
- Deprecated FlutterwaveStyle.
- Updated README file.



## [1.0.4] - July 4, 2022

Changes include:

- Renamed property `isDebug` to `isTestMode`
- Made property `redirectUrl` required
- Updated README file



## [1.0.3] - October 4, 2021.

Changes include:
- Fixed issue with webview

- Fixed issue with webview

## [1.0.2] - September 23, 2021.
Changes include:
- Fixed bug where cancel payment buttons are not clickable on iOS devices.

Changes include:

- Fixed bug where cancel payment buttons are not clickable on iOS devices.

## [1.0.1] - September 14, 2021.
Changes include:
- Fixed bug where response is not returned to initiating screen when user cancels transaction.

Changes include:

- Fixed bug where response is not returned to initiating screen when user cancels transaction.

## [1.0.0] - September 9, 2021.

Changes include:

- Initial release
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.7"
version: "1.1.1"
glob:
dependency: transitive
description:
Expand Down
1 change: 0 additions & 1 deletion lib/view/flutterwave_in_app_browser.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ class FlutterwaveInAppBrowser extends InAppBrowser {
_checkHasCompletedProcessing(final Uri uri) {
final status = uri.queryParameters["status"];
final txRef = uri.queryParameters["tx_ref"];
final id = uri.queryParameters["transaction_id"];
if (status != null && txRef != null) {
_finish(uri);
}
Expand Down
Loading