Skip to content
Snippets Groups Projects
Commit 4e0d4000 authored by vjrj's avatar vjrj
Browse files

More work with terminal

parent 022598af
No related branches found
No related tags found
No related merge requests found
......@@ -9,8 +9,8 @@ class SecondScreen extends StatelessWidget {
Widget build(BuildContext context) {
return Material(
color: Theme.of(context).colorScheme.background,
child: Column(
children: const <Widget>[SizedBox(height: 36), CardTerminal()]),
child:
Column(children: const <Widget>[SizedBox(height: 2), CardTerminal()]),
);
}
}
......@@ -41,8 +41,7 @@ class _CardTerminalState extends State<CardTerminal> {
.DECIMAL_SEP;
_numbers[9] = _decimalSep;
return Expanded(
child: Center(
child: ListView(children: <Widget>[
child: ListView(children: <Widget>[
Card(
elevation: 8.0,
shape: RoundedRectangleBorder(
......@@ -50,7 +49,7 @@ class _CardTerminalState extends State<CardTerminal> {
),
child: Container(
width: 320.0,
height: 700,
//height: 700,
padding: const EdgeInsets.all(10.0),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(16.0),
......@@ -85,7 +84,7 @@ class _CardTerminalState extends State<CardTerminal> {
]),
),
)
])));
]));
}
Widget _buildKeyboardButton(int index) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment