Closed ukrrrish closed 8 months ago
If you would like to customize or hide the action bar you should create a class that extends LoginActivity. From there you can call getActionBar().hide() and/or any other customization you would like. Then simply add that class to the SDK Manager's initNative call to replace our login activity.
let loginViewConfig = SalesforceLoginViewControllerConfig() loginViewConfig.showsSettingsIcon = false loginViewConfig.showsNavigationBar = true loginViewConfig.navigationBarColor = UIColor(Color("Green")) loginViewConfig.navigationBarTintColor = UIColor.white UserAccountManager.shared.loginViewControllerConfig = loginViewConfig
can we achieve the same in Android or any alternative solution available?