carp_webservices 0.11.1
carp_webservices: ^0.11.1 copied to clipboard
Flutter API for accessing the CARP web services - authentication, file management, data points, and app-specific collections of documents.
example/lib/main.dart
library carp_webservices_example_app;
import 'package:flutter/material.dart';
import 'package:carp_webservices/carp_service/carp_service.dart';
import 'package:carp_webservices/carp_auth/carp_auth.dart';
part 'home_page.dart';
part 'app_bloc.dart';
void main() {
runApp(MyApp());
}
// This widget is the root of your application.
class MyApp extends StatelessWidget {
Widget build(BuildContext context) {
return MaterialApp(
title: 'CARP Web Service Demo',
theme: ThemeData.light(),
darkTheme: ThemeData.dark(),
home: HomePage(),
);
}
}