🐛 Fix post editor alias overflow
This commit is contained in:
		@@ -183,18 +183,18 @@ class _PostPublishScreenState extends State<PostPublishScreen> {
 | 
				
			|||||||
          children: [
 | 
					          children: [
 | 
				
			||||||
            ListTile(
 | 
					            ListTile(
 | 
				
			||||||
              tileColor: Theme.of(context).colorScheme.surfaceContainerLow,
 | 
					              tileColor: Theme.of(context).colorScheme.surfaceContainerLow,
 | 
				
			||||||
              title: Row(
 | 
					              title: Column(
 | 
				
			||||||
 | 
					                crossAxisAlignment: CrossAxisAlignment.start,
 | 
				
			||||||
                children: [
 | 
					                children: [
 | 
				
			||||||
                  Text(
 | 
					                  Text(
 | 
				
			||||||
                    _editorController.title ?? 'title'.tr,
 | 
					                    _editorController.title ?? 'title'.tr,
 | 
				
			||||||
                    maxLines: 1,
 | 
					                    maxLines: 1,
 | 
				
			||||||
                    overflow: TextOverflow.ellipsis,
 | 
					                    overflow: TextOverflow.ellipsis,
 | 
				
			||||||
                  ),
 | 
					                  ),
 | 
				
			||||||
                  const Gap(6),
 | 
					 | 
				
			||||||
                  if (_editorController.aliasController.text.isNotEmpty)
 | 
					                  if (_editorController.aliasController.text.isNotEmpty)
 | 
				
			||||||
                    Badge(
 | 
					                    Badge(
 | 
				
			||||||
                      label: Text('#${_editorController.aliasController.text}'),
 | 
					                      label: Text('#${_editorController.aliasController.text}'),
 | 
				
			||||||
                    ),
 | 
					                    ).paddingOnly(bottom: 2),
 | 
				
			||||||
                ],
 | 
					                ],
 | 
				
			||||||
              ),
 | 
					              ),
 | 
				
			||||||
              subtitle: Text(
 | 
					              subtitle: Text(
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user