The spinkit_schema_parser is a parser implementation to flutter_spinkit Flutter package implemented with base on schema_widget package that produces widgets dynamically interpreting JSON objects.
- Add this to your package's pubspec.yaml file:
dependencies:
get_it:
spinkit_schema_parser: ^1.1.0-0
- Install packages from the command line: with Flutter:
$ flutter packages get
- Import it into the code file:
import 'package:spinkit_schema_parser/spinkit_schema_parser.dart';
import 'package:flutter/material.dart';
import 'package:get_it/get_it.dart';
import 'package:schema_widget/schema_widget.dart';
import 'package:spinkit_schema_parser/spinkit_schema_parser.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'SpinKit Rotating Circle Demo',
theme: ThemeData(
primarySwatch: Colors.blue,
visualDensity: VisualDensity.adaptivePlatformDensity,
),
home: Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: FutureBuilder(
future: GetIt.I.allReady(ignorePendingAsyncCreation: false),
builder: (buildContext, snapshot) {
if (snapshot.hasData) {
return SchemaWidget.parse<Widget>(context, {
"type": "SpinKitRotatingCircle",
"color": 0xFF000000,
});
}
return Container();
},
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: Icon(Icons.add),
),
),
);
}
}
- Publish Package;
- Make MVP;
- Minimal documentation;
- Add list of default supported Widgets;
- Add list of default supported Types;
- Add more spin implementations;
- Create content about;