education 0.0.8 copy "education: ^0.0.8" to clipboard
education: ^0.0.8 copied to clipboard

discontinued
outdated

android api

example/lib/main.dart

import 'package:education/education.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'My App',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  final _educationPlugin = Education();

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('Home'),
      ),
      body: Column(
        children: [
          Container(),
        ],
      ),
    );
  }
}
0
likes
0
points
23
downloads

Publisher

unverified uploader

Weekly Downloads

android api

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on education

Packages that implement education