flutter_wordpress 0.1.4
flutter_wordpress: ^0.1.4 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(),
);
}
}