tiki_localgraph 0.0.7 tiki_localgraph: ^0.0.7 copied to clipboard
mobile implementation of the user specific kgraph
import 'package:flutter/material.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
runApp(MaterialApp(
title: 'localgraph Example',
theme: ThemeData(),
home: Scaffold(
body: Center(child: Text('localgraph')),
),
));
}