tiki_style 0.0.13
tiki_style: ^0.0.13 copied to clipboard
Tiki Style Library
example/lib/main.dart
/*
* Copyright (c) TIKI Inc.
* MIT license. See LICENSE file in root directory.
*/
import 'package:flutter/material.dart';
import 'package:tiki_style/tiki_style.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return MaterialApp(home: Builder(builder: (context) {
TikiStyle.init(context);
return Scaffold(body: Center(child: ImgProvider.introBlob));
}));
}
}