viva_wallet_pos 0.0.8+3 viva_wallet_pos: ^0.0.8+3 copied to clipboard
This is a flutter plugin for Android integration with Viva Wallet POS.
import 'package:flutter/material.dart';
import 'package:viva_wallet_pos/viva_wallet_pos.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
final _pos = VivaWalletPos.instance;
String _message = 'Select action';
Color _color = Colors.green;
@override
void initState() {
super.initState();
}
void _resultMessage(String message, TransactionStatus status) {
setState(() {
_message = message;
switch (status) {
case TransactionStatus.success:
_color = Colors.green;
break;
case TransactionStatus.userCanceled:
_color = Colors.orange;
break;
case TransactionStatus.fail:
_color = Colors.red;
break;
}
});
}
void _activatePos() async {
try {
ActivationResponse response =
await _pos.activatePos(apikey: 'API KEY', apiSecret: 'API SECREET');
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _getActivationCode() async {
try {
GetActivationCodeResponse response = await _pos.getActivationCode();
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _sale() async {
try {
TransactionResponse response = await _pos.sale(
clientTransactionId: 'Invoice 1234',
amount: 10.00,
showRating: false,
showReceipt: false,
showTransactionResult: false,
);
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _cancel() async {
try {
TransactionResponse response = await _pos.cancel(
amount: 10.00,
showRating: false,
showReceipt: false,
showTransactionResult: false,
);
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _fastRefund() async {
try {
FastRefundResponse response = await _pos.fastRefund(
amount: 10.00,
showRating: false,
showReceipt: false,
showTransactionResult: false,
);
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _transactionDetails() async {
try {
TransactionResponse response = await _pos.transactionDetails(
clientTransactiodId: '1234567890123456789',
sourceTerminalId: '12345',
);
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _reprintTransaction() async {
try {
ReprintTransactionResponse response = await _pos.reprintTransaction(
orderCode: '1234567890123456789',
);
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _batch() async {
try {
BatchResponse response = await _pos.batch(
command: BatchCommand.open,
);
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _abort() async {
try {
AbortResponse response = await _pos.abort();
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _setMode() async {
try {
SetModeResponse response = await _pos.setMode(
mode: ApplicationMode.attended,
pin: '1234',
);
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _setDecimalAmountMode() async {
try {
SetDecimalAmountModeResponse response = await _pos.setDecimalAmountMode(
decimalMode: false,
);
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _resetTerminal() async {
try {
ResetTerminalResponse response = await _pos.resetTerminal(
softReset: true,
);
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _setPrintingSettings() async {
try {
SetPrintingSettingsResponse response = await _pos.setPrintingSettings(
businessDescriptionEnabled: true,
businessDescriptionType: BusinessDescriptionType.storeName,
);
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
void _sendLogs() async {
try {
SendLogsResponse response = await _pos.sendLogs();
_resultMessage(response.message, response.status);
} catch (e) {
_resultMessage(e.toString(), TransactionStatus.fail);
}
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('VW Pos Plugin example'),
),
// ovdje ubaciti fiksni message da bude pri vrhu a dolje LisView scrollable...
body: ListView(children: <Widget>[
Padding(
padding: const EdgeInsets.all(10),
child: Container(
height: 80,
color: _color,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: Center(
child: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Text(_message),
),
),
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child: const Text('Activate POS', style: TextStyle(fontSize: 18)),
onPressed: () async {
_activatePos();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child: const Text('Get Activation Code',
style: TextStyle(fontSize: 18)),
onPressed: () async {
_getActivationCode();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child: const Text('Sale 10.00', style: TextStyle(fontSize: 18)),
onPressed: () {
_sale();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child: const Text('Cancel/refund -10.00',
style: TextStyle(fontSize: 18)),
onPressed: () {
_cancel();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child: const Text('Fast refund -10.00',
style: TextStyle(fontSize: 18)),
onPressed: () {
_fastRefund();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child: const Text('Transaction details',
style: TextStyle(fontSize: 18)),
onPressed: () {
_transactionDetails();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child: const Text('Reprint transaction',
style: TextStyle(fontSize: 18)),
onPressed: () {
_reprintTransaction();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child: const Text('Open / close batch',
style: TextStyle(fontSize: 18)),
onPressed: () {
_batch();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child:
const Text('Abort request', style: TextStyle(fontSize: 18)),
onPressed: () {
_abort();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child: const Text('Set Mode', style: TextStyle(fontSize: 18)),
onPressed: () {
_setMode();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child: const Text('Set Decimal Amount Mode',
style: TextStyle(fontSize: 18)),
onPressed: () {
_setDecimalAmountMode();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child: const Text('Send logs', style: TextStyle(fontSize: 18)),
onPressed: () {
_sendLogs();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child: const Text('Set printing settings',
style: TextStyle(fontSize: 18)),
onPressed: () {
_setPrintingSettings();
},
),
),
Container(
height: 70,
padding: const EdgeInsets.fromLTRB(10, 10, 10, 0),
child: ElevatedButton(
child:
const Text('Reset Terminal', style: TextStyle(fontSize: 18)),
onPressed: () {
_resetTerminal();
},
),
),
]),
),
);
}
}