|
|
@@ -114,6 +114,7 @@ class _NodeListState extends State<NodeList>
|
|
|
}, childCount: groupedData[tag.id]!.length),
|
|
|
),
|
|
|
),
|
|
|
+ SliverSafeArea(sliver: SliverToBoxAdapter(child: 0.verticalSpace)),
|
|
|
],
|
|
|
);
|
|
|
}
|
|
|
@@ -149,11 +150,13 @@ class _CountrySection extends StatelessWidget {
|
|
|
: Get.reactiveTheme.highlightColor)
|
|
|
: Get.reactiveTheme.highlightColor;
|
|
|
|
|
|
- return Container(
|
|
|
- margin: const EdgeInsets.symmetric(horizontal: 12, vertical: 8),
|
|
|
+ return AnimatedContainer(
|
|
|
+ duration: const Duration(milliseconds: 300),
|
|
|
+ curve: Curves.easeInOut,
|
|
|
+ margin: EdgeInsets.symmetric(horizontal: 12.w, vertical: 8.w),
|
|
|
decoration: BoxDecoration(
|
|
|
color: backgroundColor,
|
|
|
- borderRadius: BorderRadius.circular(12),
|
|
|
+ borderRadius: BorderRadius.circular(12.r),
|
|
|
),
|
|
|
child: Column(
|
|
|
children: [
|