genuiworkshopstep7 Skill
Execute Step 7 of the GenUI Workshop, creating the weather card widget and fake forecast data. Published by flutter in demos.
What is genuiworkshopstep7 Skill?
Execute Step 7 of the GenUI Workshop, creating the weather card widget and fake forecast data. Published by flutter in demos. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Data analysis
- Data analysis use cases
Technical details
- Install or run with Copy skill directory
When to use genuiworkshopstep7 Skill
- Use it for data analysis.
Built with
Editorial notes
Source
- Creator: flutter
- Repository: flutter/demos
- Skill file: genui_workshop/.agents/skills/genui_workshop_step_7/SKILL.md
What it does
Execute Step 7 of the GenUI Workshop, creating the weather card widget and fake forecast data.
Skill instructions
GenUI Workshop - Step 7 Goal: Execute Step 7 of the GenUI workshop. Instructions: Use your code editing tools to create the weather card catalog widget, fake forecast data, and update the app's configuration. 1. Create lib/catalog/weathercard.dart: dart import 'package:flutter/material.dart'; import 'package:genui/genui.dart'; import 'package:jsonschemabuilder/jsonschemabuilder.dart'; final forecastSchema = S.object( properties: { 'areaname': S.string(), 'currentcondition': S.object( properties: { "tempC": S.number(), "tempF": S.number(), "humidity": S.number(), "observationtime": S.string(), }, ), 'weatherDesc': S.string(), 'weatherIconUrl': S.string(), }, ); final weatherCard = CatalogItem( name: 'WeatherCard', dataSchema: forecastSchema, widgetBuilder: (itemContext) { return WeatherCard(data: itemContext.data as Map<String, Object?); }, ); class WeatherCard extends StatelessWidget { final Map<String, Object? data; const WeatherCard({super.key, required this.data}); @override Widget
Explore related resources
Frequently asked questions
What is genuiworkshopstep7?
genuiworkshopstep7 is a open-source AI agent skill with Copy skill directory. Execute Step 7 of the GenUI Workshop, creating the weather card widget and fake forecast data.
Who is genuiworkshopstep7 best for?
genuiworkshopstep7 is best for reusing agent instructions, scripts, and references, data analysis workflows.
How do I install genuiworkshopstep7?
Install or run genuiworkshopstep7 using Copy skill directory. Check genuiworkshopstep7 for the latest setup command.
Is genuiworkshopstep7 actively maintained?
genuiworkshopstep7 may need a closer maintenance check before production use.
Auto-fetched from GitHub.