add license identifier

This commit is contained in:
Helium314 2025-02-09 13:21:21 +01:00 committed by GitHub
parent 36b5c85609
commit d6bf40b9e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,3 +1,4 @@
// SPDX-License-Identifier: GPL-3.0-only
package helium314.keyboard.settings.dialogs package helium314.keyboard.settings.dialogs
import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.Column
@ -103,4 +104,4 @@ fun ColorPickerDialog(
@Composable @Composable
private fun Preview() { private fun Preview() {
ColorPickerDialog({}, android.graphics.Color.MAGENTA, "color name", {}) ColorPickerDialog({}, android.graphics.Color.MAGENTA, "color name", {})
} }