fastyle_forms 0.0.3 copy "fastyle_forms: ^0.0.3" to clipboard
fastyle_forms: ^0.0.3 copied to clipboard

outdated

Set of forms Widgets for the fastyle library.

example/lib/main.dart

import 'package:fastyle_dart/fastyle_dart.dart';
import 'package:fastyle_forms/fastyle_forms.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  String? _value;

  @override
  Widget build(BuildContext context) {
    return FastApp(
      home: FastSectionPage(
        child: Column(children: [
          FastDigitCalculatorField(
            labelText: 'Value A',
            valueText: _value ?? '',
            placeholderText: '0',
            onValueChanged: (value) {
              setState(() => _value = value);
            },
          ),
        ]),
      ),
    );
  }
}
0
likes
0
points
271
downloads

Publisher

unverified uploader

Weekly Downloads

Set of forms Widgets for the fastyle library.

Homepage
Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

fastyle_dart, fastyle_digit_calculator, flutter, font_awesome_flutter, t_helpers, tbloc

More

Packages that depend on fastyle_forms