mirror of
https://github.com/GalaxyViewer/GalaxyViewer.git
synced 2026-08-14 00:57:53 +00:00
* 📦️ Upgrades packages, renames LoggedInView to WelcomeView * 📦️ Upgrades packages, removes Shell theme * 🐛 📦 Fixes issues with trying to Login on Android, updates packages * 🐛 Grid Selection now works * 🚧 Moved some things to a Session service, fixed grids not populating on clean install * 🚧 L$ Balance is now visible * ✨ Adds a working address bar and teleporting, renames WelcomeView to DashboardView, fixes login location, general formatting tweaks * 📦️ Upgrades packages * 🌐 Localization update, tweaks for emoji, and adding RTL support * ✨ Working basic chat functionality * Update GalaxyViewer/ViewModels/MainViewModel.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Galaxy Littlepaws <34807062+GalaxyLittlepaws@users.noreply.github.com> * Update GalaxyViewer/Views/LoginView.axaml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Signed-off-by: Galaxy Littlepaws <34807062+GalaxyLittlepaws@users.noreply.github.com> --------- Signed-off-by: Galaxy Littlepaws <34807062+GalaxyLittlepaws@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
27 lines
794 B
C#
27 lines
794 B
C#
using Android.App;
|
|
using Android.Content.PM;
|
|
using Android.Views;
|
|
using Avalonia;
|
|
using Avalonia.Android;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace GalaxyViewer.Android
|
|
{
|
|
[Activity(
|
|
Label = "GalaxyViewer.Android",
|
|
Theme = "@style/MyTheme.NoActionBar",
|
|
Icon = "@drawable/icon",
|
|
MainLauncher = true,
|
|
WindowSoftInputMode = SoftInput.AdjustResize,
|
|
ConfigurationChanges =
|
|
ConfigChanges.Orientation | ConfigChanges.ScreenSize | ConfigChanges.UiMode)]
|
|
public class MainActivity : AvaloniaMainActivity<App>
|
|
{
|
|
protected override AppBuilder CustomizeAppBuilder(AppBuilder builder)
|
|
{
|
|
return base.CustomizeAppBuilder(builder)
|
|
.WithInterFont()
|
|
.UseReactiveUI();
|
|
}
|
|
}
|
|
} |