mirror of
https://github.com/Iconica-Development/flutter_timetable.git
synced 2025-05-19 03:43:43 +02:00
19 lines
358 B
Dart
19 lines
358 B
Dart
|
part of timetable;
|
||
|
|
||
|
class TableTheme {
|
||
|
const TableTheme({
|
||
|
this.lineColor = const Color(0x809E9E9E),
|
||
|
this.lineHeight = 2,
|
||
|
this.timeStyle = const TextStyle(),
|
||
|
});
|
||
|
|
||
|
/// The color of the lines.
|
||
|
final Color lineColor;
|
||
|
|
||
|
/// The height of the lines.
|
||
|
final double lineHeight;
|
||
|
|
||
|
/// The style of the time text.
|
||
|
final TextStyle timeStyle;
|
||
|
}
|