Minor alignment changes
This commit is contained in:
@@ -17,6 +17,7 @@ class ContentListTile extends StatelessWidget {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return ListTile(
|
return ListTile(
|
||||||
|
contentPadding: const EdgeInsets.all(0),
|
||||||
title: Row(
|
title: Row(
|
||||||
children: [
|
children: [
|
||||||
if (name != null) Text(name!),
|
if (name != null) Text(name!),
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ class ContentBox extends StatelessWidget {
|
|||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Column(
|
return Column(
|
||||||
mainAxisSize: MainAxisSize.max,
|
mainAxisSize: MainAxisSize.max,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
Text(title),
|
Text(title),
|
||||||
ListView.builder(
|
ListView.builder(
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ class SkillListTile extends StatelessWidget {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return ListTile(
|
return ListTile(
|
||||||
|
contentPadding: const EdgeInsets.all(0),
|
||||||
title: Row(
|
title: Row(
|
||||||
children: [
|
children: [
|
||||||
Expanded(flex: 2, child: Text(name)),
|
Expanded(flex: 2, child: Text(name)),
|
||||||
|
|||||||
Reference in New Issue
Block a user