notes/lib/note_tile.dart
lukas-heiligenbrunner 0a987facc8 use fixed color values
add material animation to menu button
add draft of preview pages
2022-10-23 17:57:59 +02:00

30 lines
671 B
Dart

import 'package:flutter/material.dart';
class NoteTile extends StatelessWidget {
const NoteTile({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return SizedBox(
width: 100,
child: Column(
children: [
SizedBox(
height: 150,
width: 100,
child: Container(
color: Colors.white,
),
),
const Text(
'This is a very long text mimimim lolo',
style: TextStyle(color: Colors.white),
overflow: TextOverflow.ellipsis,
),
const Text('11:40')
],
),
);
}
}