13 lines
357 B
Dart
13 lines
357 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:slothmu/partials/post.dart';
|
|
import 'package:slothmu/partials/thread.dart';
|
|
|
|
Widget timeline(context) {
|
|
return Container(
|
|
child: ListView(
|
|
padding: const EdgeInsets.fromLTRB(24, 0, 24, 64),
|
|
addAutomaticKeepAlives: false,
|
|
children: [Thread(), Thread(), Thread()],
|
|
),
|
|
);
|
|
}
|