unified_multi_step_form 1.1.2 copy "unified_multi_step_form: ^1.1.2" to clipboard
unified_multi_step_form: ^1.1.2 copied to clipboard

A reusable Flutter package for state-preserving multi-step forms.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'company_info_demo_screen.dart';

// Example app entry point for the package example.
//
// Run this app from the example folder to see the package UI in action.

/// Launches the example app.
void main() {
  runApp(const UnifiedMultiStepFormExampleApp());
}

/// Root widget for the example application.
class UnifiedMultiStepFormExampleApp extends StatelessWidget {
  /// Creates the example app.
  const UnifiedMultiStepFormExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      theme: ThemeData(useMaterial3: true),
      home: const CompanyInfoDemoScreen(),
    );
  }
}
5
likes
0
points
218
downloads

Publisher

unverified uploader

Weekly Downloads

A reusable Flutter package for state-preserving multi-step forms.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, image_picker

More

Packages that depend on unified_multi_step_form