carbon_flutter 0.11.1 copy "carbon_flutter: ^0.11.1" to clipboard
carbon_flutter: ^0.11.1 copied to clipboard

UI library that translates IBM's Carbon Design System into Flutter

example/lib/main.dart

import 'package:carbon_flutter/carbon.dart';
import 'package:example/examples/index.dart';
import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  MyAppState createState() => MyAppState();
}

class MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return CarbonApp(title: 'Carbon Examples', home: CButtonExample());
  }
}
27
likes
70
points
57
downloads

Publisher

unverified uploader

Weekly Downloads

UI library that translates IBM's Carbon Design System into Flutter

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_svg, pmvvm, vector_math

More

Packages that depend on carbon_flutter