Skip to content
| Marketplace
Sign in
Visual Studio Code>Snippets>KC Flutter SnippetsNew to Visual Studio Code? Get it now.
KC Flutter Snippets

KC Flutter Snippets

Fuzzy

|
1 install
| (0) | Free
Flutter code snippets with kc structure (constructors, fields, methods)
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

KC Flutter Snippets

Flutter code snippets with KC structure (constructors, fields, methods).

Features

This extension provides Flutter/Dart code snippets that follow the KC coding standards with proper structure:

  • Organized constructor, fields, and methods sections
  • Consistent comment headers
  • Common Flutter widget patterns

Snippets

Prefix Description
stlsk StatelessWidget with KC structure
stlsfk StatefulWidget with KC structure
stlp Private widget template

Usage

  1. Type the snippet prefix (e.g., stlsk)
  2. Press Tab to expand the snippet
  3. Use Tab to navigate through placeholders
  4. Fill in your class names and content

Example

Type stlsk and press Tab:

class WidgetName extends StatelessWidget {
  // ------------------------------- CONSTRUCTORS ------------------------------
  const WidgetName({super.key});

  // ------------------------------- FIELDS ------------------------------------
  // Add your fields here

  // --------------------------------- METHODS ---------------------------------
  @override
  Widget build(BuildContext context) {
    return Container();
  }

  // Add your methods here
}

Installation

Install from VS Code Extensions Marketplace or manually install the .vsix file.

License

MIT

snippets

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft