hx_components_flutter 1.2.2
hx_components_flutter: ^1.2.2 copied to clipboard
The official Hexagon Pro design pattern Lib.
example/lib/main.dart
import 'package:example/example_view.dart';
import 'package:flutter/material.dart';
import 'package:hx_components_flutter/hx_utils.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'HxPro Flutter Lib',
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: kcPrimaryMaterialColor,
),
home: const ExampleView(),
);
}
}