ussd_advanced 0.1.2 ussd_advanced: ^0.1.2 copied to clipboard
Run ussd code directly in your application
ussd_advanced #
Run ussd code directly in your application
Usage #
Add dependency to pubspec.yaml file
Android #
You'll need to add the CALL_PHONE
permission and READ_PHONE_STATE
to your Android Manifest.
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
iOS #
Add this to your info.plist
under dict
<key>LSApplicationQueriesSchemes</key>
<array>
<string>tel</string>
</array>
Example #
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:ussd_advanced/ussd_advanced.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> {
late TextEditingController _controller;
String? _response;
@override
void initState() {
super.initState();
_controller = TextEditingController();
}
@override
void dispose() {
_controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Ussd Plugin example'),
),
body: Column(
mainAxisAlignment: MainAxisAlignment.center,
mainAxisSize: MainAxisSize.max,
children: [
// text input
TextField(
controller: _controller,
keyboardType: TextInputType.phone,
decoration: const InputDecoration(labelText: 'Ussd code'),
),
// dispaly responce if any
if(_response != null)Padding(
padding: const EdgeInsets.symmetric(vertical: 8),
child: Text(_response!),
),
// buttons
Row(
mainAxisSize: MainAxisSize.max,
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
ElevatedButton(
onPressed: (){
UssdAdvanced.sendUssd(code: _controller.text, subscriptionId: 1);
},
child: const Text('norma request'),
),
ElevatedButton(
onPressed: ()async{
String? _res =await UssdAdvanced.sendAdvancedUssd(code: _controller.text, subscriptionId: 1);
setState(() {
_response = _res;
});
},
child: const Text('advanced request'),
),
],
)
],
),
),
);
}
}
Methods #
There are two methods, sendUssd & sendAdvancedUssd.
The sendUssd runs the ussd normaly and supports multisession USSDs.
The sendAdvancedUssd runs ussd in background and gives you the response as a string. It only surports android 8+(SDK 26+). It defaults to sendAdvancedUssd
when the SDK is lower. For multisession USSDs, send the request as one, ie;
UssdAdvanced.sendAdvancedUssd(code: "*123*1*4*3#", subscriptionId: -1);
Selecting SimCard #
You can select which simcard to use providing subscriptionId
.
-1: is for default phone setting.
Only supports android 6+, and defaults to default if the SDK is lower