liqkit_ui 0.0.1 copy "liqkit_ui: ^0.0.1" to clipboard
liqkit_ui: ^0.0.1 copied to clipboard

iOS 26 Liquid Glass design system for Flutter - components, theming, and foundation primitives. Hand-ported from the Figma-extracted liqkit design system.

example/lib/main.dart

import 'package:flutter/widgets.dart';
import 'package:liqkit_ui/liqkit_ui.dart';

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

class _ExampleApp extends StatelessWidget {
  const _ExampleApp();

  @override
  Widget build(BuildContext context) {
    return const LiqApp(
      light: LiqThemeData.light,
      dark: LiqThemeData.dark,
      home: _Home(),
    );
  }
}

class _Home extends StatelessWidget {
  const _Home();

  @override
  Widget build(BuildContext context) {
    return Center(
      child: SizedBox(
        width: 200,
        height: 80,
        child: LiqMaterialSurface(
          material: LiqMaterial.regular,
          child: Center(
            child: Text(
              'liqkit_ui',
              style: LiqTheme.of(context).bodyText.toTextStyle(),
              textDirection: TextDirection.ltr,
            ),
          ),
        ),
      ),
    );
  }
}
0
likes
160
points
--
downloads

Documentation

API reference

Publisher

verified publisherliqkit.com

Weekly Downloads

iOS 26 Liquid Glass design system for Flutter - components, theming, and foundation primitives. Hand-ported from the Figma-extracted liqkit design system.

Repository (GitHub)
View/report issues

Topics

#design-system #ios #liquid-glass #components #theming

License

MIT (license)

Dependencies

flutter

More

Packages that depend on liqkit_ui