scaling the timeline

This commit is contained in:
zoe 2022-07-03 15:47:24 +02:00
parent c63f062640
commit ee081de0ab
14 changed files with 202 additions and 63 deletions

View file

@ -1,9 +1,13 @@
import 'package:flutter/material.dart';
import 'package:slothmu/partials/post.dart';
import 'package:slothmu/partials/thread.dart';
Widget timeline(context) {
return Padding(
padding: const EdgeInsets.all(24),
child: Column(
children: [],
));
return Container(
child: ListView(
padding: const EdgeInsets.fromLTRB(24, 0, 24, 64),
addAutomaticKeepAlives: false,
children: [Thread(), Thread(), Thread()],
),
);
}