You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jade_gui/lib/functions/keyboard.dart

24 lines
589 B
Dart

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: [],
),
],
),
);
}