ticket releated changes done

This commit is contained in:
Surendiran 2025-09-06 11:29:06 +05:30
parent a20c3a38b8
commit 22b6b6750c
7 changed files with 57 additions and 62 deletions

View File

@ -19,12 +19,12 @@ if (project.hasProperty('google-services.json')) {
def flutterVersionCode = localProperties.getProperty('flutter.versionCode') def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) { if (flutterVersionCode == null) {
flutterVersionCode = '23' flutterVersionCode = '24'
} }
def flutterVersionName = localProperties.getProperty('flutter.versionName') def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) { if (flutterVersionName == null) {
flutterVersionName = '1.0.23' flutterVersionName = '1.0.24'
} }
def keystoreProperties = new Properties() def keystoreProperties = new Properties()

View File

@ -475,71 +475,64 @@ class _helpState extends State<help> {
) )
]), ]),
), ),
Container( Container(
width: double.infinity, width: Responsive.isDesktop(context) ? 500 : double.infinity,
height: 75, height: 75,
// padding: Responsive.isDesktop(context)
// ? EdgeInsets.only(top: 20, bottom: 20, left: 30, right: 30)
// : EdgeInsets.only(top: 5, bottom: 5,left: 10,right: 10),
padding: Responsive.isDesktop(context) padding: Responsive.isDesktop(context)
? EdgeInsets.only(top: 20, bottom: 20, left: 30, right: 30) ? EdgeInsets.only(top: 20, bottom: 20, left: 30, right: 30)
: EdgeInsets.only( : EdgeInsets.symmetric(vertical: 5, horizontal: 10),
top: 5,
bottom: 5,
left: 10,
right: 10), // Add padding to the container
child: Row( child: Row(
children: [ children: [
Expanded( Expanded(
flex: 6, flex: 6,
child: Container( child: ElevatedButton(
width: 300, onPressed: () {
height: 150, var details = {
alignment: Alignment.centerRight, 'claimsDetails': '',
child: ElevatedButton( 'fromClaimPage': 1,
onPressed: () { };
var details = { Navigator.pushNamed(context, 'planclaimsform',
'claimsDetails': '', arguments: details);
'fromClaimPage': 1 },
}; style: ElevatedButton.styleFrom(
Navigator.pushNamed(context, 'planclaimsform', backgroundColor: Color(0xFFE26728),
arguments: details); shape: RoundedRectangleBorder(
}, borderRadius: BorderRadius.circular(5),
child: Text(
'Raise a Claims',
style: GoogleFonts.poppins(color: Colors.white),
),
style: ElevatedButton.styleFrom(
backgroundColor: Color(0xFFE26728),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(5),
),
),
), ),
)), ),
child: Text(
'Raise Claims',
style: GoogleFonts.poppins(color: Colors.white),
),
),
),
SizedBox(width: 10), SizedBox(width: 10),
Expanded( Expanded(
flex: 6, flex: 6,
child: Container( child: ElevatedButton(
width: 300, onPressed: () {
height: 150, Navigator.pushNamed(context, 'tickets');
alignment: Alignment.centerLeft, },
child: ElevatedButton( style: ElevatedButton.styleFrom(
onPressed: () { backgroundColor: Color(0xFFE26728),
Navigator.pushNamed(context, 'tickets'); shape: RoundedRectangleBorder(
}, borderRadius: BorderRadius.circular(5),
child: Text(
'Raise a Support',
style: GoogleFonts.poppins(color: Colors.white),
),
style: ElevatedButton.styleFrom(
backgroundColor: Color(0xFFE26728),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(5),
),
),
), ),
)), ),
child: Text(
'Raise a Query',
style: GoogleFonts.poppins(color: Colors.white),
),
),
),
], ],
), ),
), ),
SizedBox(height: 20), SizedBox(height: 20),
// SizedBox(height: 15), // SizedBox(height: 15),
Container( Container(
@ -547,7 +540,7 @@ class _helpState extends State<help> {
color: Color(0xFFF6FAFF), color: Color(0xFFF6FAFF),
borderRadius: BorderRadius.circular(5), borderRadius: BorderRadius.circular(5),
), ),
padding: EdgeInsets.symmetric(horizontal: 10, vertical: 10), padding: EdgeInsets.symmetric(horizontal: 5, vertical: 5),
child: Responsive.isDesktop(context) child: Responsive.isDesktop(context)
? Row( ? Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly, mainAxisAlignment: MainAxisAlignment.spaceEvenly,
@ -588,7 +581,7 @@ class _helpState extends State<help> {
Expanded( Expanded(
child: _buildTabButton( child: _buildTabButton(
context: context, context: context,
title: "Supports", title: "Queries",
isActive: tickets == 0, isActive: tickets == 0,
onTap: () { onTap: () {
setState(() { setState(() {
@ -642,7 +635,7 @@ class _helpState extends State<help> {
SizedBox(width: 10), SizedBox(width: 10),
_buildTabButton( _buildTabButton(
context: context, context: context,
title: "Supports", title: "Queries",
isActive: tickets == 0, isActive: tickets == 0,
onTap: () { onTap: () {
setState(() { setState(() {

View File

@ -177,6 +177,8 @@ class _profileState extends State<profile> {
// Clear all keys // Clear all keys
await prefs.clear(); await prefs.clear();
print('Local Storage Clear');
// html.window.localStorage.clear(); // html.window.localStorage.clear();
// Re-set the mobile_number key // Re-set the mobile_number key
if (isMobilePlatform()) { if (isMobilePlatform()) {

View File

@ -361,7 +361,7 @@ class _ticketsState extends State<tickets> {
: MainAxisAlignment.start, : MainAxisAlignment.start,
children: [ children: [
Text( Text(
'Raise a Support', 'Raise a Query',
textAlign: TextAlign.start, textAlign: TextAlign.start,
style: GoogleFonts.poppins( style: GoogleFonts.poppins(
fontSize: fontSize:

View File

@ -27,7 +27,7 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
FLTFirebaseMessagingPlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseMessagingPlugin")) FLTFirebaseMessagingPlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseMessagingPlugin"))
InAppWebViewFlutterPlugin.register(with: registry.registrar(forPlugin: "InAppWebViewFlutterPlugin")) InAppWebViewFlutterPlugin.register(with: registry.registrar(forPlugin: "InAppWebViewFlutterPlugin"))
FLTGoogleSignInPlugin.register(with: registry.registrar(forPlugin: "FLTGoogleSignInPlugin")) FLTGoogleSignInPlugin.register(with: registry.registrar(forPlugin: "FLTGoogleSignInPlugin"))
LocalAuthPlugin.register(with: registry.registrar(forPlugin: "LocalAuthPlugin")) FLALocalAuthPlugin.register(with: registry.registrar(forPlugin: "FLALocalAuthPlugin"))
FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin")) FPPPackageInfoPlusPlugin.register(with: registry.registrar(forPlugin: "FPPPackageInfoPlusPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))

View File

@ -16,8 +16,8 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
# In Windows, build-name is used as the major, minor, and patch parts # In Windows, build-name is used as the major, minor, and patch parts
# of the product and file versions while build-number is used as the build suffix. # of the product and file versions while build-number is used as the build suffix.
#version: 1.0.23+23 #version: 1.0.24+24
version: 1.0.11+12 version: 1.0.12+13
environment: environment:
sdk: '>=3.3.3 <4.0.0' sdk: '>=3.3.3 <4.0.0'

View File

@ -165,8 +165,8 @@ body.show-botman #botmanWidgetRoot {
console.log("Initializing Botman Chat"); console.log("Initializing Botman Chat");
window.botmanWidget = { window.botmanWidget = {
chatServer: 'https://venbait.in/nhance/chatbot/chat', chatServer: 'https://app.nhanceindia.in/zenith/chat',
frameEndpoint: 'https://venbait.in/nhance/chatbot/widget', frameEndpoint: 'https://app.nhanceindia.in/zenith/widget',
title: "Ask ILA", title: "Ask ILA",
introMessage: "", introMessage: "",
bubbleBackground: "#179a9f", bubbleBackground: "#179a9f",