change the orientation of passcode_screen in flutter code example
Example: flutter lock orientation
void initState(){
super.initState();
SystemChrome.setPreferredOrientations([
DeviceOrientation.landscapeRight,
DeviceOrientation.landscapeLeft,
]);
}