mirror of
https://github.com/amigan/calls.git
synced 2024-11-21 20:39:47 -05:00
39 lines
789 B
Dart
39 lines
789 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class Keypad extends StatefulWidget {
|
|
const Keypad({super.key});
|
|
|
|
@override
|
|
State<Keypad> createState() => _KeypadState();
|
|
}
|
|
/*
|
|
class KeypadKey extends ElevatedButton {
|
|
@override
|
|
ButtonStyle? themeStyleOf(BuildContext context) {
|
|
return ElevatedButtonTheme(
|
|
data: ElevatedButtonThemeData(
|
|
style: ButtonStyle(
|
|
shape: BoxBorder()
|
|
)
|
|
),
|
|
);
|
|
}
|
|
}
|
|
*/
|
|
|
|
class _KeypadState extends State<Keypad> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Container(
|
|
margin: const EdgeInsets.all(16.0),
|
|
child: const Column(children: [
|
|
Row(children: [
|
|
Text(
|
|
"test",
|
|
)
|
|
]),
|
|
Row(),
|
|
Row(),
|
|
]));
|
|
}
|
|
}
|