mirror of
				https://github.com/SimpleMobileTools/Simple-Calculator.git
				synced 2025-06-05 21:49:13 +02:00 
			
		
		
		
	refactor: extract getFeatureLockedDialogState
This commit is contained in:
		| @@ -46,13 +46,7 @@ class SettingsActivity : AppCompatActivity() { | ||||
|                 } | ||||
|                 val isOrWasThankYouInstalled = onEventValue { context.isOrWasThankYouInstalled() } | ||||
|                 val displayLanguage = remember { Locale.getDefault().displayLanguage } | ||||
|                 val featureLockedDialogState = rememberAlertDialogState().apply { | ||||
|                     DialogMember { | ||||
|                         FeatureLockedAlertDialog(alertDialogState = this) { | ||||
|  | ||||
|                         } | ||||
|                     } | ||||
|                 } | ||||
|                 val featureLockedDialogState = getFeatureLockedDialogState() | ||||
|                 SettingsScreen( | ||||
|                     displayLanguage = displayLanguage, | ||||
|                     goBack = ::finish, | ||||
| @@ -86,6 +80,14 @@ class SettingsActivity : AppCompatActivity() { | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     @Composable | ||||
|     private fun getFeatureLockedDialogState() = | ||||
|         rememberAlertDialogState().apply { | ||||
|             DialogMember { | ||||
|                 FeatureLockedAlertDialog(alertDialogState = this, callback = {}) | ||||
|             } | ||||
|         } | ||||
|  | ||||
|     private fun handleCustomizeColorsClick() { | ||||
|         Intent(applicationContext, CustomizationActivity::class.java).apply { | ||||
|             putExtra(APP_ICON_IDS, getAppIconIds()) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user