add toolbar to comments
This commit is contained in:
parent
1fcc95d6b9
commit
4cd8b9855c
|
@ -99,7 +99,9 @@ class WriteComment extends HookWidget {
|
|||
),
|
||||
],
|
||||
),
|
||||
body: ListView(
|
||||
body: Stack(
|
||||
children: [
|
||||
ListView(
|
||||
children: [
|
||||
ConstrainedBox(
|
||||
constraints: BoxConstraints(
|
||||
|
@ -130,6 +132,21 @@ class WriteComment extends HookWidget {
|
|||
)
|
||||
],
|
||||
),
|
||||
Toolbar.safeArea,
|
||||
],
|
||||
),
|
||||
SafeArea(
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
const Spacer(),
|
||||
Toolbar(
|
||||
controller: controller,
|
||||
instanceHost: post.instanceHost,
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue