updated to embedded payments

This commit is contained in:
2025-12-07 18:18:35 +02:00
parent 666257e9ed
commit 4fcc6b9f36
3 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
; BASE_URL=https://peakapi.qantra.co.zw/api BASE_URL=https://peakapi.qantra.co.zw/api
; BASE_URL=http://192.168.100.26:6950/api ; BASE_URL=http://192.168.100.26:6950/api
BASE_URL=http://173.212.247.232:6950/api ; BASE_URL=http://173.212.247.232:6950/api
; BASE_URL=http://10.69.5.201:6950/api ; BASE_URL=http://10.69.5.201:6950/api
; BASE_URL=http://192.168.120.160:6950/api ; BASE_URL=http://192.168.120.160:6950/api
; BASE_URL=http://10.10.2.92:6950/api ; BASE_URL=http://10.10.2.92:6950/api

View File

@@ -86,8 +86,8 @@ class ConfirmController extends ChangeNotifier {
if (context.mounted) { if (context.mounted) {
if(kIsWeb){ if(kIsWeb){
// the one we use here depends on when mpgs embedded bug will be fixed // the one we use here depends on when mpgs embedded bug will be fixed
// context.push('/gateway-web'); context.push('/gateway-web');
context.push('/gateway-redirect'); // context.push('/gateway-redirect');
}else { }else {
context.push('/gateway'); context.push('/gateway');
} }

View File

@@ -346,7 +346,7 @@ class _HomeScreenState extends State<HomeScreen>
Tween<Offset>(begin: Offset(0, -0.20), end: Offset.zero).animate( Tween<Offset>(begin: Offset(0, -0.20), end: Offset.zero).animate(
CurvedAnimation( CurvedAnimation(
parent: _controller, parent: _controller,
curve: Interval(0.40 * index.toDouble(), 1.0, curve: Curves.easeIn), curve: Interval(0.3 * index.toDouble(), 1.0, curve: Curves.easeIn),
), ),
); );
return Row( return Row(
@@ -601,7 +601,7 @@ class _HomeScreenState extends State<HomeScreen>
Tween<Offset>(begin: Offset(0, -0.20), end: Offset.zero).animate( Tween<Offset>(begin: Offset(0, -0.20), end: Offset.zero).animate(
CurvedAnimation( CurvedAnimation(
parent: _controller, parent: _controller,
curve: Interval(0.40 * index.toDouble(), 1.0, curve: Curves.easeIn), curve: Interval(0.30 * index.toDouble(), 1.0, curve: Curves.easeIn),
), ),
); );
return Column( return Column(