Add all keyboard layouts and their variants
parent
c5df6a295d
commit
4177e26a8c
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,11 @@
|
|||||||
|
class Keymap {
|
||||||
|
String layout = "";
|
||||||
|
List<String> variant = [];
|
||||||
|
String backLayout = "";
|
||||||
|
|
||||||
|
Keymap({
|
||||||
|
this.layout = "",
|
||||||
|
this.variant = const [""],
|
||||||
|
this.backLayout = "",
|
||||||
|
});
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:jade_gui/Keymaps/keymaps.dart';
|
||||||
|
|
||||||
|
Widget keyboard(next) {
|
||||||
|
return Container(
|
||||||
|
child: Column(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
children: [
|
||||||
|
const Text(
|
||||||
|
'Please select a keyboard layout',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 50,
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
color: Color.fromARGB(255, 169, 0, 255)),
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||||
|
children: [],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in New Issue