Mahesh Jamdade
Mahesh Jamdade
@MohsinIkram-Auxilium > when user not enable the Face ID then the getAvailableBiometrics list always empty. `getAvailableBiometrics` is supposed to return the enrolled biometrics on device, meaning list of biometrics user...
> So now I disable the FaceID and trying to call again auth method. Now there is no way to check user disable the FaceID. So need to add check...
I was able to reproduce this on a Pixel emulator, Pressing up/down arrow key on a physical keyboard reproduces the issue https://user-images.githubusercontent.com/31410839/172311939-c891b11c-d020-4320-9557-839ab08d8cf1.mov code sample ```dart import 'package:flutter/material.dart'; void main() {...
Removing the Samsung label since this tends to occur on nonsamsung devices too.
@LongCatIsLooong I was able to reproduce this by pressing up/down arrow keys on a physical keyboard please see https://github.com/flutter/flutter/issues/98720#issuecomment-1148260659
> await SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge); @lalLAL95828 Not sure why would you make that initialization in [deactivate](https://api.flutter.dev/flutter/widgets/State/deactivate.html) method, That method won't be executed unless the widget is removed from the widget tree. In...
@lalLAL95828 I ran your application with `info/main.dart` as the root file and see this Can you please create a project containing minimal reproducible code and share the reproducible steps? Thanks
@lalLAL95828 Thanks for the code sample, I can reproduce the issue, after enabling ``` SystemChrome.setEnabledSystemUIMode(SystemUiMode.edgeToEdge); ``` The content from the column is getting out of the viewport. https://user-images.githubusercontent.com/31410839/139247325-097ef9ec-251f-4052-a230-ad825d74d947.mov code sample...
@tashda thanks for the PR will reveiw this soon.
@tashda I am sorry for the delay this is fixed and released in latest version. Thank you for your contribution.