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

outdated

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(),
    );
  }
}
120
likes
0
pub points
64%
popularity

Publisher

verified publisherdsi.dev

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

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, http

More

Packages that depend on flutter_wordpress