npx skills add smithery/aaronbassett --skill flutter-ui-widgets
smithery/ngxtm
Flutter UI Widgets
Principles for maintainable UI components.
Installation
npx skills add smithery/ngxtm --skill flutter-ui-widgets
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Guidance for distinctive, intentional visual design when building new UI or reshaping an existi…
866.4K installsBrowser automation CLI for AI agents. Use when the user needs to interact with websites, includ…
810.4K installsReview UI code for Web Interface Guidelines compliance. Use when asked to "review my UI", "chec…
617.3K installsBuild, deploy, evaluate, optimize, fine-tune, and manage Microsoft Foundry agents, models, and …
576.5K installsDebug Azure production issues on Azure using AppLens, Azure Monitor, resource health, and safe …
568.9K installsAlso in this package
Other skills from smithery/ngxtm · top by installs.
npx skills add smithery/ngxtm
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Skill metadata
Parsed from SKILL.md frontmatter.
More metadata
- labels
- ["ui","widgets"]
- triggers
- {"files":["**_page.dart","**_screen.dart","**\/widgets\/**"],"keywords":["StatelessWidget","const","Theme","ListView"]}
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md1,149 B -
docs
SUMMARY.md68 B
History
- First recorded snapshot · 0 installs
SKILL.md
UI & Widgets (P1)
- State: Use
StatelessWidgetby default.StatefulWidgetonly for local state/controllers. - Composition: Extract UI into small, atomic
constwidgets. - Theming: Use
Theme.of(context). No hardcoded colors. - Layout: Use
Flex+Gap/SizedBox. - Specialized:
- SelectionArea: For multi-widget text selection. - InteractiveViewer: For zoom/pan. - ListWheelScrollView: For pickers. - IntrinsicWidth/Height: Avoid unless strictly required.
- Large Lists: Always use
ListView.builder.
class AppButton extends StatelessWidget {
final String label;
final VoidCallback onPressed;
const AppButton({super.key, required this.label, required this.onPressed});
@override
Widget build(BuildContext context) => ElevatedButton(onPressed: onPressed, child: Text(label));
}
Related Topics
performance | testing