@@ -69,9 +69,9 @@ public enum CustomKeyboardIdentifier: String {
6969 case Numbers = " Numbers "
7070 case Letters = " Letters "
7171 case Symbols = " Symbols "
72- case Shift = " Shift "
73- case ShiftToggled = " ShiftToggled "
74- case ShiftToggledOnce = " ShiftToggledOnce "
72+ case ShiftOff = " ShiftOff "
73+ case ShiftOn = " ShiftOn "
74+ case ShiftOnce = " ShiftOnce "
7575}
7676
7777// MARK: - CustomKeyboardLayout
@@ -120,12 +120,12 @@ public class CustomKeyboardLayout {
120120 characters: [
121121 KeyboardButton (
122122 type: . Image( UIImage (
123- named: " shiftToggledOnce " ,
123+ named: " ShiftOnce " ,
124124 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
125125 compatibleWithTraitCollection: nil ) ) ,
126126 style: CustomKeyboardShiftButtonStyle,
127127 width: . Relative( percent: 0.115 ) ,
128- identifier: CustomKeyboardIdentifier . ShiftToggledOnce . rawValue) ,
128+ identifier: CustomKeyboardIdentifier . ShiftOnce . rawValue) ,
129129 KeyboardRow (
130130 style: CustomKeyboardChildRowStyle,
131131 characters: [
@@ -140,7 +140,7 @@ public class CustomKeyboardLayout {
140140 ) ,
141141 KeyboardButton (
142142 type: . Image( UIImage (
143- named: " backspace " ,
143+ named: " Backspace " ,
144144 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
145145 compatibleWithTraitCollection: nil ) ) ,
146146 style: CustomKeyboardBackspaceButtonStyle,
@@ -158,7 +158,7 @@ public class CustomKeyboardLayout {
158158 identifier: CustomKeyboardIdentifier . Numbers. rawValue) ,
159159 KeyboardButton (
160160 type: . Image( UIImage (
161- named: " globe " ,
161+ named: " Globe " ,
162162 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
163163 compatibleWithTraitCollection: nil ) ) ,
164164 style: CustomKeyboardGlobeButtonStyle,
@@ -215,12 +215,12 @@ public class CustomKeyboardLayout {
215215 characters: [
216216 KeyboardButton (
217217 type: . Image( UIImage (
218- named: " shiftToggled " ,
218+ named: " ShiftOn " ,
219219 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
220220 compatibleWithTraitCollection: nil ) ) ,
221221 style: CustomKeyboardShiftButtonStyle,
222222 width: . Relative( percent: 0.115 ) ,
223- identifier: CustomKeyboardIdentifier . ShiftToggled . rawValue) ,
223+ identifier: CustomKeyboardIdentifier . ShiftOn . rawValue) ,
224224 KeyboardRow (
225225 style: CustomKeyboardChildRowStyle,
226226 characters: [
@@ -235,7 +235,7 @@ public class CustomKeyboardLayout {
235235 ) ,
236236 KeyboardButton (
237237 type: . Image( UIImage (
238- named: " backspace " ,
238+ named: " Backspace " ,
239239 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
240240 compatibleWithTraitCollection: nil ) ) ,
241241 style: CustomKeyboardBackspaceButtonStyle,
@@ -253,7 +253,7 @@ public class CustomKeyboardLayout {
253253 identifier: CustomKeyboardIdentifier . Numbers. rawValue) ,
254254 KeyboardButton (
255255 type: . Image( UIImage (
256- named: " globe " ,
256+ named: " Globe " ,
257257 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
258258 compatibleWithTraitCollection: nil ) ) ,
259259 style: CustomKeyboardGlobeButtonStyle,
@@ -310,12 +310,12 @@ public class CustomKeyboardLayout {
310310 characters: [
311311 KeyboardButton (
312312 type: . Image( UIImage (
313- named: " shift " ,
313+ named: " ShiftOff " ,
314314 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
315315 compatibleWithTraitCollection: nil ) ) ,
316316 style: CustomKeyboardShiftButtonStyle,
317317 width: . Relative( percent: 0.115 ) ,
318- identifier: CustomKeyboardIdentifier . Shift . rawValue) ,
318+ identifier: CustomKeyboardIdentifier . ShiftOff . rawValue) ,
319319 KeyboardRow (
320320 style: CustomKeyboardChildRowStyle,
321321 characters: [
@@ -330,7 +330,7 @@ public class CustomKeyboardLayout {
330330 ) ,
331331 KeyboardButton (
332332 type: . Image( UIImage (
333- named: " backspace " ,
333+ named: " Backspace " ,
334334 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
335335 compatibleWithTraitCollection: nil ) ) ,
336336 style: CustomKeyboardBackspaceButtonStyle,
@@ -348,7 +348,7 @@ public class CustomKeyboardLayout {
348348 identifier: CustomKeyboardIdentifier . Numbers. rawValue) ,
349349 KeyboardButton (
350350 type: . Image( UIImage (
351- named: " globe " ,
351+ named: " Globe " ,
352352 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
353353 compatibleWithTraitCollection: nil ) ) ,
354354 style: CustomKeyboardGlobeButtonStyle,
@@ -421,7 +421,7 @@ public class CustomKeyboardLayout {
421421 ) ,
422422 KeyboardButton (
423423 type: . Image( UIImage (
424- named: " backspace " ,
424+ named: " Backspace " ,
425425 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
426426 compatibleWithTraitCollection: nil ) ) ,
427427 style: CustomKeyboardBackspaceButtonStyle,
@@ -439,7 +439,7 @@ public class CustomKeyboardLayout {
439439 identifier: CustomKeyboardIdentifier . Letters. rawValue) ,
440440 KeyboardButton (
441441 type: . Image( UIImage (
442- named: " globe " ,
442+ named: " Globe " ,
443443 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
444444 compatibleWithTraitCollection: nil ) ) ,
445445 style: CustomKeyboardGlobeButtonStyle,
@@ -512,7 +512,7 @@ public class CustomKeyboardLayout {
512512 ) ,
513513 KeyboardButton (
514514 type: . Image( UIImage (
515- named: " backspace " ,
515+ named: " Backspace " ,
516516 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
517517 compatibleWithTraitCollection: nil ) ) ,
518518 style: CustomKeyboardBackspaceButtonStyle,
@@ -530,7 +530,7 @@ public class CustomKeyboardLayout {
530530 identifier: CustomKeyboardIdentifier . Letters. rawValue) ,
531531 KeyboardButton (
532532 type: . Image( UIImage (
533- named: " globe " ,
533+ named: " Globe " ,
534534 inBundle: NSBundle ( forClass: CustomKeyboard . self) ,
535535 compatibleWithTraitCollection: nil ) ) ,
536536 style: CustomKeyboardGlobeButtonStyle,
0 commit comments