report_previewer 1.2.1+6
report_previewer: ^1.2.1+6 copied to clipboard
A Flutter package providing a widget for previewing reports.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:get/get_connect/http/src/utils/utils.dart';
import 'package:get/route_manager.dart';
import 'package:report_previewer/report_previewer.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return GetMaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
// This is the theme of your application.
//
// TRY THIS: Try running your application with "flutter run". You'll see
// the application has a purple toolbar. Then, without quitting the app,
// try changing the seedColor in the colorScheme below to Colors.green
// and then invoke "hot reload" (save your changes or press the "hot
// reload" button in a Flutter-supported IDE, or press "r" if you used
// the command line to start the app).
//
// Notice that the counter didn't reset back to zero; the application
// state is not lost during the reload. To reset the state, use hot
// restart instead.
//
// This works for code too, not just values: Most code changes can be
// tested with just a hot reload.
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
// how it looks.
// This class is the configuration for the state. It holds the values (in this
// case the title) provided by the parent (in this case the App widget) and
// used by the build method of the State. Fields in a Widget subclass are
// always marked "final".
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
final String token =
"eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICJwUTYwdnFqRV9jbURibGgwcVBqUnRtMzZ1TlQtRlZlbmpuUjhiN1Z3YzhVIn0.eyJleHAiOjE3NjYyOTg1MzUsImlhdCI6MTc2NTQzNDUzNSwianRpIjoiYzNkMDg3YmMtNjUwNy00YWQ1LWJkMGMtZWMzOTJjNDkyMTQzIiwiaXNzIjoiaHR0cHM6Ly9wLTY3NGU3NzYzNTFlYzIyNjUzYTMxZWY1Ny1rZXljbG9hay1hcGkuZGV2Lm9uZWNvb3BiYW5rLmNvbS9yZWFsbXMvT25lQ29vcEJhbmsiLCJhdWQiOlsicmVhbG0tbWFuYWdlbWVudCIsImFjY291bnQiXSwic3ViIjoiNDY5MmY5MDctNjJhYi00YTU4LWJmOTMtODFhNGVjY2Y5Mjg4IiwidHlwIjoiQmVhcmVyIiwiYXpwIjoiMWNvb3BiYW5rLWNsaWVudCIsInNlc3Npb25fc3RhdGUiOiIzZTFjY2VmMC03YjFhLTQ5OGQtOGVhZS04ZTRjNDU0ZmM3M2QiLCJhY3IiOiIxIiwiYWxsb3dlZC1vcmlnaW5zIjpbIi8qIl0sInJlc291cmNlX2FjY2VzcyI6eyJyZWFsbS1tYW5hZ2VtZW50Ijp7InJvbGVzIjpbInZpZXctaWRlbnRpdHktcHJvdmlkZXJzIiwidmlldy1yZWFsbSIsIm1hbmFnZS1pZGVudGl0eS1wcm92aWRlcnMiLCJpbXBlcnNvbmF0aW9uIiwicmVhbG0tYWRtaW4iLCJjcmVhdGUtY2xpZW50IiwibWFuYWdlLXVzZXJzIiwicXVlcnktcmVhbG1zIiwidmlldy1hdXRob3JpemF0aW9uIiwicXVlcnktY2xpZW50cyIsInF1ZXJ5LXVzZXJzIiwibWFuYWdlLWV2ZW50cyIsIm1hbmFnZS1yZWFsbSIsInZpZXctZXZlbnRzIiwidmlldy11c2VycyIsInZpZXctY2xpZW50cyIsIm1hbmFnZS1hdXRob3JpemF0aW9uIiwibWFuYWdlLWNsaWVudHMiLCJxdWVyeS1ncm91cHMiXX0sImFjY291bnQiOnsicm9sZXMiOlsibWFuYWdlLWFjY291bnQiLCJtYW5hZ2UtYWNjb3VudC1saW5rcyIsInZpZXctcHJvZmlsZSJdfX0sInNjb3BlIjoibGFzdF9sb2dnZWRfaW4gcGljdHVyZSBvcyBsb2NrZWRBY2Nlc3MgZGV2aWNlX2RldGFpbHMgbmV3X3VzZXIgcHJvZmlsZSBlbWFpbCBwaG9uZSBvcGVuaWQgbXBpbiBhY2NvdW50Iiwic2lkIjoiM2UxY2NlZjAtN2IxYS00OThkLThlYWUtOGU0YzQ1NGZjNzNkIiwiZW1haWxfdmVyaWZpZWQiOmZhbHNlLCJvcyI6IldlYiIsImRldmljZV9pZCI6IjY5MDE2ZWVmMDBjYTVlZDNmNGU3MGFhYiIsInN0YXRpb25faWQiOiI2N2NjNjQ5M2E1OTJkNDBmMTc0OWI1YTMiLCJsYXRpdHVkZSI6IiIsInNlcmlhbF9udW1iZXIiOiIiLCJkZXZpY2VfdHlwZSI6InVzZXIiLCJwcmVmZXJyZWRfdXNlcm5hbWUiOiJtbHphcmNvQG9uZWNvb3BlcmF0aXZlYmFuay5jb20iLCJpcF9hZGRyZXNzIjoiIiwiZ2l2ZW5fbmFtZSI6Ik1hcmlhbmUiLCJkZXZpY2VfbmFtZSI6IiIsImxhc3RfbG9nZ2VkX2luIjoiMjAyNS0xMi0xMSAwMzowMjoxMS42MTkxNDQ0NjUgKzAwMDAgVVRDIG09KzU1MjE3MzQuNTk0ODczMDY3IiwibWFjX2FkZHJlc3MiOiIiLCJuYW1lIjoiTWFyaWFuZSBaYXJjbyIsInN0YXRpb24iOiJEaWdvcyIsImZhbWlseV9uYW1lIjoiWmFyY28iLCJlbWFpbCI6Im1semFyY29Ab25lY29vcGVyYXRpdmViYW5rLmNvbSIsImxvbmdpdHVkZSI6IiJ9.W4aBX6Rt4GmGdsfQqoAGwRvSgQBJ1iKf5Fs7jcnx2u_llSS2VjJLiZjw_tjn9y_bx1T2FD7qRuDcX51GmU7A0vLNzKCLWS4dAoNMJsMkfwVYN9xWSMwR3zFG2MHW4itQ2RJu0LdA5B1LuFnj7Mgj2DARjhtx3f7HCPHqqaj60j3Yfp53OWKjMYhmt3WAOKxH0Fqw2hBzBwVE2kxaX966cy-84nMEXl1l3Kam1U3RMVhAAWt87ALVQBDciX0VqzTSul-34qmn2Orc3VdrhRwLBsg7MODs03dOx6HOFljjL_qnQWNu_V8kMnepgJQ37GvWTNaL-aQLJeL273QbjeFGBA";
@override
Widget build(BuildContext context) {
// This method is rerun every time setState is called, for instance as done
// by the _incrementCounter method above.
//
// The Flutter framework has been optimized to make rerunning build methods
// fast, so that you can just rebuild anything that needs updating rather
// than having to individually change instances of widgets.
return Scaffold(
// appBar: AppBar(
// // TRY THIS: Try changing the color here to a specific color (to
// // Colors.amber, perhaps?) and trigger a hot reload to see the AppBar
// // change color while the other colors stay the same.
// backgroundColor: Colors.black,
// // Here we take the value from the MyHomePage object that was created by
// // the App.build method, and use it to set our appbar title.
// title: const Text(
// "OneCB Modules",
// style: TextStyle(color: Colors.white),
// ),
// ),
// body: TimeDepositSubledger(
// // body: TimeDepositLedger(
// environment: 'dev',
// subdomain: 'cashier',
// baseUrl: 'https://cashier.dev-1.onecoopbank.com/gate',
// accountNumber: "0170002620",
// endpoint: '/api',
// token: token,
// buttons: [ActionColButton(label: "label", onPress: () {}, icon: "")],
// id: "68c34ea698ba2a7de54463d4", //"0170002943",
// onBack: () {
// Get.back();
// },
// ));
// body: TimeDepositLedger(
// environment: 'dev',
// subdomain: 'cashier',
// baseUrl: 'https://cashier.dev-1.onecoopbank.com/gate',
// endpoint: '/api',
// token: token,
// buttons: [ActionColButton(label: "label", onPress: () {}, icon: "")],
// accountNumber: "0170002943",
// onBack: () {
// Get.back();
// },
// ));
body: ReportsModule(
environment: 'dev',
subdomain: 'cashier',
baseUrl: 'https://cashier.dev-1.onecoopbank.com/gate',
endpoint: '/api',
token: token));
// body: ReportsModule(
// environment: 'dev',
// subdomain: 'cashier',
// baseUrl: 'https://cashier.dev-1.onecoopbank.com/gate',
// endpoint: '/api',
// token: token));
}
}