tag

forms

4 indexed skills · max 10 per page

skills (4)

reference-signal-forms

angular/angular · Productivity

1

The packages/forms/signals directory contains an experimental, signal-based forms API for Angular. This system differs significantly from the existing Reactive and Template-driven forms.

angular-forms

analogjs/angular-skills · Productivity

0

Signal-based reactive forms for Angular v21+ with automatic two-way binding and schema-based validation. \n \n Provides type-safe form creation using writable signals as the single source of truth, with automatic field state management for validation, interaction, and availability \n Includes built-in validators (required, email, min, max, pattern) plus custom, cross-field, and async HTTP validation with conditional logic \n Supports dynamic arrays, nested objects, hidden/disabled/readonly field

gws-forms

googleworkspace/cli · Productivity

0

Read and write Google Forms through direct API resource commands. \n \n Supports five core operations: create forms, retrieve form data, batch update form structure, manage publish settings, and handle responses and watches \n Requires Google Workspace authentication via the shared gws prerequisite; review ../gws-shared/SKILL.md for auth setup and security rules \n Use gws schema to inspect method signatures, required parameters, and data types before constructing API calls with --params and --j

flutter-building-forms

flutter/skills · Frontend

0

Validated Flutter forms with field-level error handling and submission workflows. \n \n Requires StatefulWidget hosting with a persistent GlobalKey<FormState> to manage form state and validation across rebuilds \n Use TextFormField widgets with validator() callbacks that return error strings on failure or null on success \n Call _formKey.currentState!.validate() on submit to trigger all validators and automatically display error messages below fields \n Includes complete code example demons