diff --git a/src/Files.App/Views/SplashScreenPage.xaml b/src/Files.App/Views/SplashScreenPage.xaml index 396245525e56..dcfaa344eb9b 100644 --- a/src/Files.App/Views/SplashScreenPage.xaml +++ b/src/Files.App/Views/SplashScreenPage.xaml @@ -9,16 +9,38 @@ mc:Ignorable="d"> - + + + + + + + + + + + @@ -27,10 +49,10 @@ - + - + diff --git a/src/Files.App/Views/SplashScreenPage.xaml.cs b/src/Files.App/Views/SplashScreenPage.xaml.cs index 4ece2c48b895..da9e23d82aa0 100644 --- a/src/Files.App/Views/SplashScreenPage.xaml.cs +++ b/src/Files.App/Views/SplashScreenPage.xaml.cs @@ -11,6 +11,14 @@ namespace Files.App.Views /// public sealed partial class SplashScreenPage : Page { + private string BranchLabel => + ApplicationService.AppEnvironment switch + { + AppEnvironment.Dev => "Dev", + AppEnvironment.Preview => "Preview", + _ => string.Empty, + }; + public SplashScreenPage() { InitializeComponent();