-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FEATURE :: Theme Keyboard #65
Conversation
frogo-keyboard/src/main/java/com/frogobox/libkeyboard/common/core/BaseKeyboardIME.kt
Fixed
Show fixed
Hide fixed
data: KeyboardFeature, | ||
position: Int, | ||
notifyListener: FrogoRecyclerNotifyListener<KeyboardFeature>, | ||
) {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
data: KeyboardFeature, | ||
position: Int, | ||
notifyListener: FrogoRecyclerNotifyListener<KeyboardFeature>, | ||
) {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
@@ -1,4 +1,4 @@ | |||
package com.frogobox.appkeyboard.di.hilt | |||
package com.frogobox.appkeyboard.di |
Check warning
Code scanning / detekt
Checks whether files end with a line separator. Warning
@@ -1,4 +1,4 @@ | |||
package com.frogobox.appkeyboard.di.hilt | |||
package com.frogobox.appkeyboard.di |
Check warning
Code scanning / detekt
Checks whether files end with a line separator. Warning
@@ -1,4 +1,4 @@ | |||
package com.frogobox.appkeyboard.di.hilt | |||
package com.frogobox.appkeyboard.di |
Check warning
Code scanning / detekt
Checks whether files end with a line separator. Warning
@@ -1,4 +1,4 @@ | |||
package com.frogobox.appkeyboard.di.hilt | |||
package com.frogobox.appkeyboard.di |
Check warning
Code scanning / detekt
Checks whether files end with a line separator. Warning
data: KeyboardFeatureModel, | ||
position: Int, | ||
notifyListener: FrogoRecyclerNotifyListener<KeyboardFeatureModel>, | ||
) {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
data: KeyboardFeatureModel, | ||
position: Int, | ||
notifyListener: FrogoRecyclerNotifyListener<KeyboardFeatureModel>, | ||
) {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
data: KeyboardThemeModel, | ||
position: Int, | ||
notifyListener: FrogoRecyclerNotifyListener<KeyboardThemeModel> | ||
) {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
|
||
fun setThemeColor(color: Int, onSuccess: () -> Unit) { | ||
pref.savePrefInt(KeyboardUtil.KEYBOARD_COLOR, color, object : FrogoStateResponse { | ||
override fun onFailed(statusCode: Int, errorMessage: String) {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
fun setThemeColor(color: Int, onSuccess: () -> Unit) { | ||
pref.savePrefInt(KeyboardUtil.KEYBOARD_COLOR, color, object : FrogoStateResponse { | ||
override fun onFailed(statusCode: Int, errorMessage: String) {} | ||
override fun onFinish() {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
@@ -0,0 +1,43 @@ | |||
package com.frogobox.appkeyboard.ui.toggle |
Check warning
Code scanning / detekt
Checks whether files end with a line separator. Warning
@@ -0,0 +1,133 @@ | |||
package com.frogobox.appkeyboard.ui.theme |
Check warning
Code scanning / detekt
Checks whether files end with a line separator. Warning
@@ -0,0 +1,53 @@ | |||
package com.frogobox.appkeyboard.ui.theme |
Check warning
Code scanning / detekt
Checks whether files end with a line separator. Warning
@@ -0,0 +1,38 @@ | |||
package com.frogobox.appkeyboard.model |
Check warning
Code scanning / detekt
Checks whether files end with a line separator. Warning
@@ -0,0 +1,17 @@ | |||
package com.frogobox.appkeyboard.model |
Check warning
Code scanning / detekt
Checks whether files end with a line separator. Warning
@@ -144,38 +144,29 @@ | |||
currentInputConnection?.commitText(text, 0) | |||
} | |||
|
|||
override fun initialSetupKeyboard() { | |||
override fun initialSetupKeyboard() {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
|
||
} | ||
override fun setupTheme() {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
override fun showMainKeyboard() { | ||
|
||
} | ||
override fun initCurrentInputConnection() {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
|
||
override fun showOnlyKeyboard() { | ||
override fun hideMainKeyboard() {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
|
||
} | ||
override fun showMainKeyboard() {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
|
||
override fun hideOnlyKeyboard() { | ||
override fun showOnlyKeyboard() {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
|
||
} | ||
override fun hideOnlyKeyboard() {} |
Check warning
Code scanning / detekt
Empty block of code detected. As they serve no purpose they should be removed. Warning
Feature Request : #63