flutter_cxui 1.0.2 copy "flutter_cxui: ^1.0.2" to clipboard
flutter_cxui: ^1.0.2 copied to clipboard

Flutter_cui is a UI toolkit based on the Flutter framework. It provides a rich variety of reusable components and styles, helping developers quickly build cross-platform applications with high perform [...]

flutter_cxui

flutter_cxui #

flutter_cxui is a flutter ui kit with material theme. It includes a lot of reusable components and styles, it can help developers quickly build high-performance, high-correctness, and high-consistency applications.

Install #

  flutter pub add flutter_cxui

or

dependencies:
  flutter_cxui: [version]

Jump to Flutter_cxui package.

Usage #

CxConfig is custom class.

import 'package:flutter_cxui/cxui.dart';

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

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

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        body:  CxCard(
          shadow: true,
          radius: 16,
          bgColor: CxConfig.primary,
          hdBgColor: CxConfig.white.withAlpha(90),
          titleColor: CxConfig.white,
          margin: EdgeInsets.all(10),
          title: "Actions",
          actions: [
            CxIconButton(
              icon: Icons.arrow_circle_right_outlined,
              color: CxConfig.white,
              size: 18,
            )
          ],
          body: Text("hello"),
        ),
      ),
    );
  }
}

Components #

home place_grid
icon_button select_button_list
image_card card
title_nav slider

Demo #

Movie Home Movie Item

Thanks for supporting us #

赞赏支持

1
likes
135
points
22
downloads

Publisher

verified publisherflutter.wutongwei.com

Weekly Downloads

Flutter_cui is a UI toolkit based on the Flutter framework. It provides a rich variety of reusable components and styles, helping developers quickly build cross-platform applications with high performance, high-fidelity, and consistency.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

cupertino_icons, flutter, ionicons

More

Packages that depend on flutter_cxui