flutter_wordpress 0.2.1 copy "flutter_wordpress: ^0.2.1" to clipboard
flutter_wordpress: ^0.2.1 copied to clipboard

This library uses WordPress REST-API-V2 to provide a way for your application to interact with your WordPress website.

example/lib/main.dart

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

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

class WordPressApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'WordPress Demo',
      theme: ThemeData.light(),
      home: LoginPage(),
    );
  }
}
121
likes
40
points
28
downloads

Publisher

verified publisherdsi.dev

Weekly Downloads

This library uses WordPress REST-API-V2 to provide a way for your application to interact with your WordPress website.

Repository (GitHub)

License

MIT (license)

Dependencies

flutter, http, meta

More

Packages that depend on flutter_wordpress