super_auto_suggestion_box 1.3.1 copy "super_auto_suggestion_box: ^1.3.1" to clipboard
super_auto_suggestion_box: ^1.3.1 copied to clipboard

Super Auto Suggestion Box is a GeniusLink Flutter package providing a typeahead/combobox with local and remote sources, fuzzy matching, single or multi-select, free-text entry, progressive fallback, i [...]

example/lib/main.dart

// ============================================================
// example/lib/main.dart
// ------------------------------------------------------------
// Gallery launcher for super_auto_suggestion_box. Uses the super_core 3.3.0
// theme and responsive layout primitives, exposes Light/Dark + LTR/RTL toggles,
// and opens the shipped SuperAutoSuggestionsBox demo.
// ============================================================

import 'package:flutter/material.dart';
import 'package:flutter_localizations/flutter_localizations.dart';
import 'package:super_auto_suggestion_box/super_auto_suggestion_box.dart';

import 'auto_suggestion_box_demo.dart';
import 'advanced_search_screen.dart';
import 'sources/async_source_screen.dart';
import 'sources/fuzzy_source_screen.dart';
import 'sources/hybrid_source_screen.dart';
import 'sources/list_source_screen.dart';
import 'sources/paged_source_screen.dart';
import 'sources/remote_fallback_source_screen.dart';
import 'sources/strings_source_screen.dart';
import 'super_auto_suggestions_item_scenarios_screen.dart';

void main() => runApp(const ExampleApp());

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

  @override
  State<ExampleApp> createState() => _ExampleAppState();
}

class _ExampleAppState extends State<ExampleApp> {
  ThemeMode _mode = ThemeMode.dark;
  TextDirection _direction = TextDirection.ltr;

  void _toggleTheme() {
    setState(() {
      _mode = _mode == ThemeMode.dark ? ThemeMode.light : ThemeMode.dark;
    });
  }

  void _toggleDirection() {
    setState(() {
      _direction = _direction == TextDirection.ltr
          ? TextDirection.rtl
          : TextDirection.ltr;
    });
  }

  @override
  Widget build(BuildContext context) {
    final typography = SuperTextTheme(
      isArabic: _direction == TextDirection.rtl,
    );

    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Super Auto Suggestion Box',
      locale: Locale(_direction == TextDirection.rtl ? 'ar' : 'en'),
      localizationsDelegates: const [
        GlobalMaterialLocalizations.delegate,
        GlobalWidgetsLocalizations.delegate,
        GlobalCupertinoLocalizations.delegate,
        SuperAutoSuggestionsTranslation.delegate,
      ],
      supportedLocales:
          SuperAutoSuggestionsTranslation.delegate.supportedLocales,
      themeMode: _mode,
      theme: SuperMaterialThemeData.light(
        textTheme: typography,
        primaryTextTheme: typography,
      ),
      darkTheme: SuperMaterialThemeData.dark(
        textTheme: typography,
        primaryTextTheme: typography,
      ),
      builder: (context, child) =>
          Directionality(textDirection: _direction, child: child!),
      home: _Launcher(
        mode: _mode,
        direction: _direction,
        onToggleTheme: _toggleTheme,
        onToggleDirection: _toggleDirection,
      ),
    );
  }
}

class _Demo {
  const _Demo(this.title, this.subtitle, this.icon, this.builder);

  final String title;
  final String subtitle;
  final IconData icon;
  final WidgetBuilder builder;
}

class _Launcher extends StatelessWidget {
  const _Launcher({
    required this.mode,
    required this.direction,
    required this.onToggleTheme,
    required this.onToggleDirection,
  });

  final ThemeMode mode;
  final TextDirection direction;
  final VoidCallback onToggleTheme;
  final VoidCallback onToggleDirection;

  static final List<_Demo> _demos = [
    _Demo(
      'Suggestion item scenarios',
      'All SuperAutoSuggestionsItem fields · enabledSnapshot',
      Icons.view_list_rounded,
      (_) => const SuperAutoSuggestionsItemScenariosScreen(),
    ),
    _Demo(
      'Advanced Search',
      'Ctrl / Cmd + F · built-in dialog · custom advanced-search surface',
      Icons.search_rounded,
      (_) => const AdvancedSearchScreen(),
    ),
    _Demo(
      'Auto Suggestion Box',
      'Typeahead · recents · create · paged · multi-select · fuzzy',
      Icons.manage_search_outlined,
      (_) => const AutoSuggestionBoxDemo(),
    ),
    _Demo(
      'String source',
      'Label-equals-value convenience source · basic · controlled · multi-select · recents',
      Icons.source_outlined,
      (_) => const StringsSourceScreen(),
    ),
    _Demo(
      'List source',
      'In-memory contains matching · basic · controlled · multi-select · recents',
      Icons.source_outlined,
      (_) => const ListSourceScreen(),
    ),
    _Demo(
      'Fuzzy source',
      'Typo-tolerant in-memory ranking · basic · controlled · multi-select · recents',
      Icons.source_outlined,
      (_) => const FuzzySourceScreen(),
    ),
    _Demo(
      'Async source',
      'Server-style asynchronous lookup · basic · controlled · multi-select · recents',
      Icons.source_outlined,
      (_) => const AsyncSourceScreen(),
    ),
    _Demo(
      'Hybrid source',
      'Local results merged with remote data · basic · controlled · multi-select · recents',
      Icons.source_outlined,
      (_) => const HybridSourceScreen(),
    ),
    _Demo(
      'Remote fallback',
      'Local-first lookup with remote fallback · basic · controlled · multi-select · recents',
      Icons.source_outlined,
      (_) => const RemoteFallbackSourceScreen(),
    ),
    _Demo(
      'Paged source',
      'Infinite scrolling through server pages · basic · controlled · multi-select · recents',
      Icons.source_outlined,
      (_) => const PagedSourceScreen(),
    ),
  ];

  @override
  Widget build(BuildContext context) {
    final theme = context.superTheme;
    final typography = context.superTextTheme;
    final spacing = theme.spacing;
    final colorScheme = Theme.of(context).colorScheme;

    return Scaffold(
      backgroundColor: theme.bg,
      body: SafeArea(
        child: SingleChildScrollView(
          child: SuperScaffold(
            maxWidth: 960,
            child: Column(
              crossAxisAlignment: CrossAxisAlignment.stretch,
              children: [
                Text(
                  'SUPER AUTO SUGGESTION BOX • GALLERY',
                  style: typography.eyebrow.copyWith(
                    color: colorScheme.primary,
                  ),
                ),
                SizedBox(height: spacing.space2),
                Text(
                  'Component Demos مكتبة المكونات',
                  style: typography.h1.copyWith(color: theme.fg1),
                ),
                SizedBox(height: spacing.space8),
                for (final demo in _demos) ...[
                  _DemoCard(demo: demo),
                  SizedBox(height: spacing.section),
                ],
                SizedBox(height: spacing.space6),
                Wrap(
                  alignment: WrapAlignment.center,
                  spacing: spacing.space3,
                  runSpacing: spacing.space3,
                  children: [
                    SuperButton(
                      label: mode == ThemeMode.dark
                          ? 'Light Theme'
                          : 'Dark Theme',
                      variant: SuperButtonVariant.secondary,
                      onPressed: onToggleTheme,
                    ),
                    SuperButton(
                      label: direction == TextDirection.ltr
                          ? 'العربية (RTL)'
                          : 'English (LTR)',
                      variant: SuperButtonVariant.secondary,
                      onPressed: onToggleDirection,
                    ),
                  ],
                ),
              ],
            ),
          ),
        ),
      ),
    );
  }
}

class _DemoCard extends StatelessWidget {
  const _DemoCard({required this.demo});

  final _Demo demo;

  @override
  Widget build(BuildContext context) {
    final theme = context.superTheme;
    final typography = context.superTextTheme;
    final spacing = theme.spacing;
    final colorScheme = Theme.of(context).colorScheme;

    return SuperSectionCard(
      onTap: () => Navigator.of(
        context,
      ).push(MaterialPageRoute<void>(builder: demo.builder)),
      padding: spacing.cardPadding,
      child: Row(
        children: [
          Container(
            width: spacing.controlHeight,
            height: spacing.controlHeight,
            decoration: BoxDecoration(
              color: Color.alphaBlend(
                colorScheme.primary.withValues(alpha: 0.14),
                theme.surface,
              ),
              borderRadius: spacing.borderRadiusControl,
            ),
            child: Icon(demo.icon, size: 22, color: colorScheme.primary),
          ),
          SizedBox(width: spacing.space4),
          Expanded(
            child: Column(
              crossAxisAlignment: CrossAxisAlignment.start,
              children: [
                Text(
                  demo.title,
                  style: typography.heading.copyWith(color: theme.fg1),
                ),
                SizedBox(height: spacing.space1),
                Text(
                  demo.subtitle,
                  style: typography.caption.copyWith(color: theme.fg3),
                ),
              ],
            ),
          ),
          Icon(Icons.chevron_right, color: theme.fg4),
        ],
      ),
    );
  }
}
1
likes
140
points
879
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Super Auto Suggestion Box is a GeniusLink Flutter package providing a typeahead/combobox with local and remote sources, fuzzy matching, single or multi-select, free-text entry, progressive fallback, infinite scroll, recent suggestions, inline creation, shadow-hint completion, record binding, read-only and fixable modes, controller-driven focus/form wiring, advanced search, bare embedding, and shared core theming. Supports light/dark themes, LTR, and RTL.

Homepage
Repository (GitHub)
View/report issues

Topics

#flutter #widget #autocomplete #typeahead #combobox

License

MIT (license)

Dependencies

flutter, flutter_localizations, intl, super_core, super_form_field

More

Packages that depend on super_auto_suggestion_box