|
12345678910111213141516 |
- using Microsoft.Maui.Controls.PlatformConfiguration.AndroidSpecific;
-
- namespace HybridApp
- {
- public partial class App : Microsoft.Maui.Controls.Application
- {
- public App()
- {
- InitializeComponent();
-
- MainPage = new MainPage();
-
- Current.On<Microsoft.Maui.Controls.PlatformConfiguration.Android>().UseWindowSoftInputModeAdjust(WindowSoftInputModeAdjust.Resize);
- }
- }
- }
|