kai_tw_ui_kit 1.0.0
kai_tw_ui_kit: ^1.0.0 copied to clipboard
This is a UI kit that shares Flutter components through my projects.
example/kai_tw_ui_kit_example.dart
import 'package:flutter/material.dart';
import 'package:kai_tw_ui_kit/kai_tw_ui_kit.dart';
void main() {
runApp(const App());
}
class App extends StatelessWidget {
const App({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('kai_tw_ui_kit'),
),
body: const SafeArea(
child: Column(
children: [
Expanded(
child: Center(
child: Column(
children: [
Icon(
Icons.check,
color: Colors.green,
),
],
),
),
),
Padding(
padding: EdgeInsets.symmetric(vertical: 8.0),
child: AppVersion(),
),
],
),
),
);
}
}