MainActivity.cs 461 B

1234567891011
  1. using Android.App;
  2. using Android.Content.PM;
  3. using Android.OS;
  4. namespace practiceApplicaiton
  5. {
  6. [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTop, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
  7. public class MainActivity : MauiAppCompatActivity
  8. {
  9. }
  10. }