DocumentationFoundationFocused OutlineFocused Outline An outline around a focused widget that does not affect its layout. API Reference PreviewCodeFFocusedOutline( focused: true, child: Container( decoration: BoxDecoration( color: context.theme.colorScheme.primary, borderRadius: BorderRadius.circular(8), ), padding: const EdgeInsets.symmetric(vertical: 8.0, horizontal: 12), child: Text( 'Focused', style: context.theme.typography.base.copyWith( color: context.theme.colorScheme.primaryForeground, ), ), ), );TooltipPortal