loris/lib/pages/timeline/timeline.dart

14 lines
357 B
Dart
Raw Normal View History

2022-06-16 20:30:02 +00:00
import 'package:flutter/material.dart';
2022-07-03 13:47:24 +00:00
import 'package:slothmu/partials/post.dart';
import 'package:slothmu/partials/thread.dart';
2022-06-16 20:30:02 +00:00
2022-07-02 22:03:10 +00:00
Widget timeline(context) {
2022-07-03 13:47:24 +00:00
return Container(
child: ListView(
padding: const EdgeInsets.fromLTRB(24, 0, 24, 64),
addAutomaticKeepAlives: false,
children: [Thread(), Thread(), Thread()],
),
);
2022-06-16 20:30:02 +00:00
}