| 
														
															@@ -225,7 +225,18 @@ class _SelectOptionCell extends StatelessWidget { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       height: GridSize.typeOptionItemHeight, 
														 | 
														
														 | 
														
															       height: GridSize.typeOptionItemHeight, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       child: Row( 
														 | 
														
														 | 
														
															       child: Row( 
														 | 
													
												
											
												
													
														| 
														 | 
														
															         children: [ 
														 | 
														
														 | 
														
															         children: [ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-          Expanded(child: _body(theme, context)), 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+          Flexible( 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+            fit: FlexFit.loose, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+            child: SelectOptionTagCell( 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+              option: option, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+              onSelected: (option) { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+                context.read<SelectOptionCellEditorBloc>().add(SelectOptionEditorEvent.selectOption(option.id)); 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+              }, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+              children: [ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+                if (isSelected) svgWidget("grid/checkmark"), 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+              ], 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+            ), 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+          ), 
														 | 
													
												
											
												
													
														| 
														 | 
														
															           FlowyIconButton( 
														 | 
														
														 | 
														
															           FlowyIconButton( 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             width: 30, 
														 | 
														
														 | 
														
															             width: 30, 
														 | 
													
												
											
												
													
														| 
														 | 
														
															             onPressed: () => _showEditPannel(context), 
														 | 
														
														 | 
														
															             onPressed: () => _showEditPannel(context), 
														 | 
													
												
											
										
											
												
													
														 | 
														
															@@ -237,18 +248,6 @@ class _SelectOptionCell extends StatelessWidget { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															     ); 
														 | 
														
														 | 
														
															     ); 
														 | 
													
												
											
												
													
														| 
														 | 
														
															   } 
														 | 
														
														 | 
														
															   } 
														 | 
													
												
											
												
													
														| 
														 | 
														
															  
														 | 
														
														 | 
														
															  
														 | 
													
												
											
												
													
														| 
														 | 
														
															-  Widget _body(AppTheme theme, BuildContext context) { 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-    return SelectOptionTagCell( 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-      option: option, 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-      onSelected: (option) { 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-        context.read<SelectOptionCellEditorBloc>().add(SelectOptionEditorEvent.selectOption(option.id)); 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-      }, 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-      children: [ 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-        if (isSelected) svgWidget("grid/checkmark"), 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-      ], 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-    ); 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-  } 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															- 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															   void _showEditPannel(BuildContext context) { 
														 | 
														
														 | 
														
															   void _showEditPannel(BuildContext context) { 
														 | 
													
												
											
												
													
														| 
														 | 
														
															     final pannel = SelectOptionTypeOptionEditor( 
														 | 
														
														 | 
														
															     final pannel = SelectOptionTypeOptionEditor( 
														 | 
													
												
											
												
													
														| 
														 | 
														
															       option: option, 
														 | 
														
														 | 
														
															       option: option, 
														 |