Victor Sanni
Victor Sanni
This adds the `TargetApi` annotation to the `getManifestNames` method in `PermissionUtils.java`. On Android, not including the TargetApi annotation to the getManifestNames method in PermissionUtils.java causes StrictMode errors: https://developer.android.com/reference/android/os/StrictMode. *List at...
### Please check the following before submitting a new issue. - [X] I have searched the [existing issues](https://github.com/baseflow/flutter-permission-handler/issues). - [X] I have carefully [read the documentation](https://github.com/baseflow/flutter-permission-handler/blob/main/permission_handler/README.md) and verified I have...
Currently, `Checkbox.adaptive` delegates to `CupertinoCheckbox` when the current platform is `iOS` or `macOS`. This PR serves to make Material `Checkbox` configure to a Cupertino look and feel when the `Checkbox.adaptive`...
Currently, when `CupertinoAlertDialog` has an action (typically a `CupertinoDialogAction`, although can be any widget type) that is disabled, tapping on the action button still makes it change opacity, thus looking...
This PR improves on the look and feel of `CupertinoCheckbox` to more closely match native iOS/macOS checkboxes. It also adds functionality to resolve the checkbox's fill color in different `WidgetState`s,...
Brings over the changes from `Switch.adaptive` into `CupertinoSwitch`. This change adds the following `Switch` parameters to `CupertinoSwitch`: `inactiveThumbColor,` `activeThumbImage`, `onActiveThumbImageError`, `inactiveThumbImage`, `onInactiveThumbImageError`, `trackOutlineColor`, `trackOutlineWidth`, `thumbIcon`, `mouseCursor`. The following `Switch` parameters...
Adds feature to darken when pressed in both selected and unselected states. Removes unnecessary calls to the canvas api. Also adds tests to check that: * `CupertinoRadio` is focusable and...
**NOTE: Previous [PR](https://github.com/flutter/flutter/pull/148804) was closed because of a bad merge leading to pollution with unrelated commits.** This PR improves on the look and feel of `CupertinoCheckbox` to more closely match...
Fixes https://github.com/flutter/flutter/issues/55025 Fixes https://github.com/flutter/flutter/issues/154040 ### Native Context menu https://github.com/user-attachments/assets/4ebed3e3-ab4f-4e94-8b47-e9c957f245ef ### Flutter iOS Context menu https://github.com/user-attachments/assets/ad8426b4-ff18-40e1-9a4f-c61d7620b069 ### Flutter macOS Context menu https://github.com/user-attachments/assets/7374a8b2-ee8d-447b-9cd4-a7f2e7674fc2 ## Pre-launch Checklist - [x] I read the [Contributor...
### Steps to reproduce 1. Wrap a `RawAutocomplete` in an `Align` with `alignment: .centerLeft`. 2. Wrap the field in `RawAutocomplete.fieldViewBuilder` in an `AnimatedBuilder` to animate the field width. ### Expected...