Currently, to enable edge-to-edge, we use deprecated View flags (see source). These have long been deprecated (this is part of #98602), but the encouraged way to set edge-to-edge mode is EdgeToEdge.enableEdgeToEdge.
We should swap out our old method with EdgeToEdge.enableEdgeToEdge because users may see confusing warnings about not having enabled edge to edge on Android < 15 when they actually do set SystemUiMode.edgeToEdge to put their app in edge-to-edge mode. I believe the warning is coming up because we do not use SystemUiMode.edgeToEdge exactly.
Currently, to enable edge-to-edge, we use deprecated
Viewflags (see source). These have long been deprecated (this is part of #98602), but the encouraged way to set edge-to-edge mode isEdgeToEdge.enableEdgeToEdge.We should swap out our old method with
EdgeToEdge.enableEdgeToEdgebecause users may see confusing warnings about not having enabled edge to edge on Android < 15 when they actually do setSystemUiMode.edgeToEdgeto put their app in edge-to-edge mode. I believe the warning is coming up because we do not useSystemUiMode.edgeToEdgeexactly.