ticket releated changes done
This commit is contained in:
parent
a20c3a38b8
commit
22b6b6750c
@ -19,12 +19,12 @@ if (project.hasProperty('google-services.json')) {
|
||||
|
||||
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
||||
if (flutterVersionCode == null) {
|
||||
flutterVersionCode = '23'
|
||||
flutterVersionCode = '24'
|
||||
}
|
||||
|
||||
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
||||
if (flutterVersionName == null) {
|
||||
flutterVersionName = '1.0.23'
|
||||
flutterVersionName = '1.0.24'
|
||||
}
|
||||
|
||||
def keystoreProperties = new Properties()
|
||||
|
||||
@ -475,71 +475,64 @@ class _helpState extends State<help> {
|
||||
)
|
||||
]),
|
||||
),
|
||||
|
||||
Container(
|
||||
width: double.infinity,
|
||||
width: Responsive.isDesktop(context) ? 500 : double.infinity,
|
||||
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)
|
||||
? EdgeInsets.only(top: 20, bottom: 20, left: 30, right: 30)
|
||||
: EdgeInsets.only(
|
||||
top: 5,
|
||||
bottom: 5,
|
||||
left: 10,
|
||||
right: 10), // Add padding to the container
|
||||
: EdgeInsets.symmetric(vertical: 5, horizontal: 10),
|
||||
child: Row(
|
||||
children: [
|
||||
Expanded(
|
||||
flex: 6,
|
||||
child: Container(
|
||||
width: 300,
|
||||
height: 150,
|
||||
alignment: Alignment.centerRight,
|
||||
child: ElevatedButton(
|
||||
onPressed: () {
|
||||
var details = {
|
||||
'claimsDetails': '',
|
||||
'fromClaimPage': 1
|
||||
};
|
||||
Navigator.pushNamed(context, 'planclaimsform',
|
||||
arguments: details);
|
||||
},
|
||||
child: Text(
|
||||
'Raise a Claims',
|
||||
style: GoogleFonts.poppins(color: Colors.white),
|
||||
),
|
||||
style: ElevatedButton.styleFrom(
|
||||
backgroundColor: Color(0xFFE26728),
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(5),
|
||||
),
|
||||
),
|
||||
flex: 6,
|
||||
child: ElevatedButton(
|
||||
onPressed: () {
|
||||
var details = {
|
||||
'claimsDetails': '',
|
||||
'fromClaimPage': 1,
|
||||
};
|
||||
Navigator.pushNamed(context, 'planclaimsform',
|
||||
arguments: details);
|
||||
},
|
||||
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),
|
||||
Expanded(
|
||||
flex: 6,
|
||||
child: Container(
|
||||
width: 300,
|
||||
height: 150,
|
||||
alignment: Alignment.centerLeft,
|
||||
child: ElevatedButton(
|
||||
onPressed: () {
|
||||
Navigator.pushNamed(context, 'tickets');
|
||||
},
|
||||
child: Text(
|
||||
'Raise a Support',
|
||||
style: GoogleFonts.poppins(color: Colors.white),
|
||||
),
|
||||
style: ElevatedButton.styleFrom(
|
||||
backgroundColor: Color(0xFFE26728),
|
||||
shape: RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(5),
|
||||
),
|
||||
),
|
||||
flex: 6,
|
||||
child: ElevatedButton(
|
||||
onPressed: () {
|
||||
Navigator.pushNamed(context, 'tickets');
|
||||
},
|
||||
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: 15),
|
||||
Container(
|
||||
@ -547,7 +540,7 @@ class _helpState extends State<help> {
|
||||
color: Color(0xFFF6FAFF),
|
||||
borderRadius: BorderRadius.circular(5),
|
||||
),
|
||||
padding: EdgeInsets.symmetric(horizontal: 10, vertical: 10),
|
||||
padding: EdgeInsets.symmetric(horizontal: 5, vertical: 5),
|
||||
child: Responsive.isDesktop(context)
|
||||
? Row(
|
||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||
@ -588,7 +581,7 @@ class _helpState extends State<help> {
|
||||
Expanded(
|
||||
child: _buildTabButton(
|
||||
context: context,
|
||||
title: "Supports",
|
||||
title: "Queries",
|
||||
isActive: tickets == 0,
|
||||
onTap: () {
|
||||
setState(() {
|
||||
@ -642,7 +635,7 @@ class _helpState extends State<help> {
|
||||
SizedBox(width: 10),
|
||||
_buildTabButton(
|
||||
context: context,
|
||||
title: "Supports",
|
||||
title: "Queries",
|
||||
isActive: tickets == 0,
|
||||
onTap: () {
|
||||
setState(() {
|
||||
|
||||
@ -177,6 +177,8 @@ class _profileState extends State<profile> {
|
||||
|
||||
// Clear all keys
|
||||
await prefs.clear();
|
||||
print('Local Storage Clear');
|
||||
|
||||
// html.window.localStorage.clear();
|
||||
// Re-set the mobile_number key
|
||||
if (isMobilePlatform()) {
|
||||
|
||||
@ -361,7 +361,7 @@ class _ticketsState extends State<tickets> {
|
||||
: MainAxisAlignment.start,
|
||||
children: [
|
||||
Text(
|
||||
'Raise a Support',
|
||||
'Raise a Query',
|
||||
textAlign: TextAlign.start,
|
||||
style: GoogleFonts.poppins(
|
||||
fontSize:
|
||||
|
||||
@ -27,7 +27,7 @@ func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
|
||||
FLTFirebaseMessagingPlugin.register(with: registry.registrar(forPlugin: "FLTFirebaseMessagingPlugin"))
|
||||
InAppWebViewFlutterPlugin.register(with: registry.registrar(forPlugin: "InAppWebViewFlutterPlugin"))
|
||||
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"))
|
||||
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
|
||||
SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin"))
|
||||
|
||||
@ -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
|
||||
# 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.
|
||||
#version: 1.0.23+23
|
||||
version: 1.0.11+12
|
||||
#version: 1.0.24+24
|
||||
version: 1.0.12+13
|
||||
|
||||
environment:
|
||||
sdk: '>=3.3.3 <4.0.0'
|
||||
|
||||
@ -165,8 +165,8 @@ body.show-botman #botmanWidgetRoot {
|
||||
console.log("Initializing Botman Chat");
|
||||
|
||||
window.botmanWidget = {
|
||||
chatServer: 'https://venbait.in/nhance/chatbot/chat',
|
||||
frameEndpoint: 'https://venbait.in/nhance/chatbot/widget',
|
||||
chatServer: 'https://app.nhanceindia.in/zenith/chat',
|
||||
frameEndpoint: 'https://app.nhanceindia.in/zenith/widget',
|
||||
title: "Ask ILA",
|
||||
introMessage: "",
|
||||
bubbleBackground: "#179a9f",
|
||||
|
||||
Loading…
Reference in New Issue
Block a user