"lib/screens/old/crmDashboardold.dart" did not exist on "c92f4c799f95afae18b0c459cd437f964b060c41"
Commit ed1a2aea authored by Sai Srinivas's avatar Sai Srinivas
Browse files

20-05-2025 By Sai Srinivas

bottom Insets, pubspec version
parent bf7b934c
......@@ -32,7 +32,7 @@
android:launchMode="singleTop"
android:taskAffinity=""
android:theme="@style/LaunchTheme"
android:screenOrientation="portrait"
android:screenOrientation="PORTRAIT"
android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
......
......@@ -55,6 +55,7 @@ class _AccountledgerState extends State<Accountledger> {
return WillPopScope(
child: Scaffold(
resizeToAvoidBottomInset: true,
appBar: appbar2(
context,
"Account Ledger List",
......
......@@ -40,6 +40,7 @@ class _AccountslistState extends State<Accountslist> {
print(accountList.length);
return WillPopScope(
child: Scaffold(
resizeToAvoidBottomInset: true,
appBar: appbar2(context, "Account List",Container(
padding: EdgeInsets.symmetric(horizontal: 5, vertical: 5),
......
......@@ -66,6 +66,7 @@ class _AccountslistdetailsState extends State<Accountslistdetails> {
],
),
)),
resizeToAvoidBottomInset: true,
backgroundColor: AppColors.scaffold_bg_color,
body: Container(
child: SingleChildScrollView(
......
......@@ -34,6 +34,7 @@ class _AddcommonpaymentState extends State<Addcommonpayment> {
return WillPopScope(
onWillPop: () => onBackPressed(context),
child: Scaffold(
resizeToAvoidBottomInset: true,
appBar: appbar(context, "Add Common Account"),
backgroundColor: AppColors.white,
body: Container(
......
......@@ -35,6 +35,7 @@ class _TransactiondetailsState extends State<Transactiondetails> {
builder: (context, provider, child) {
var details = provider.paymentDetails;
return Scaffold(
resizeToAvoidBottomInset: true,
appBar: appbar(context, "Details"),
backgroundColor: AppColors.scaffold_bg_color,
body: Container(
......
......@@ -51,6 +51,7 @@ class _AllpaymentrequesitionlistsbymodesState
return onBackPressed(context);
},
child: Scaffold(
resizeToAvoidBottomInset: true,
appBar: appbar2(
context,
widget.pageTitleName,
......
......@@ -74,6 +74,7 @@ class _FileviewerState extends State<Fileviewer> {
Widget build(BuildContext context) {
return Scaffold(
resizeToAvoidBottomInset: true,
appBar: appbar(context, "File Viewer"),
body: fileWidget(context),
);
......
......@@ -90,6 +90,7 @@ class _PaymentrequestionlistdetailsState
},);
return WillPopScope(
child: Scaffold(
resizeToAvoidBottomInset: true,
appBar: appbar(context, widget.pageName),
backgroundColor: AppColors.scaffold_bg_color,
body: Container(
......
......@@ -46,6 +46,7 @@ class _AddpaymentreceiptlistState extends State<Addpaymentreceiptlist> {
builder: (context, provider, child) {
return WillPopScope(
child: Scaffold(
resizeToAvoidBottomInset: true,
backgroundColor: AppColors.white,
appBar: appbar(context, "${widget.pageTitleName}"),
body: Container(
......
......@@ -50,6 +50,7 @@
builder: (context, provider, child) {
return WillPopScope(
child: Scaffold(
resizeToAvoidBottomInset: true,
backgroundColor: AppColors.white,
appBar: appbar(context, "${widget.pageTitleName}"),
body: Container(
......
......@@ -50,6 +50,7 @@ class _PaymentdetailspaymentrequisitionState
return WillPopScope(
child: Scaffold(
resizeToAvoidBottomInset: true,
appBar: appbar(context, widget.pageName),
backgroundColor: AppColors.scaffold_bg_color,
body: Container(
......
......@@ -43,6 +43,7 @@ class _PaymentlistpaymentrequisitionState extends State<Paymentlistpaymentrequis
return onBackPressed(context);
},
child: Scaffold(
resizeToAvoidBottomInset: true,
appBar: appbar2(
context,
widget.pageTitleName,
......
......@@ -51,6 +51,7 @@ class _PaymentreceiptdetailsState
return WillPopScope(
child: Scaffold(
resizeToAvoidBottomInset: true,
appBar: appbar(context, widget.pageName),
backgroundColor: AppColors.scaffold_bg_color,
body: Container(
......
......@@ -45,6 +45,7 @@ class _PaymentreceiptlistState extends State<Paymentreceiptlist> {
return onBackPressed(context);
},
child: Scaffold(
resizeToAvoidBottomInset: true,
appBar: appbar2(
context,
widget.pageTitleName,
......
......@@ -52,6 +52,7 @@ class _SubmitpaymentrequestionlistsbymodeState
});
return WillPopScope(
child: Scaffold(
resizeToAvoidBottomInset: true,
backgroundColor: AppColors.white,
appBar: appbar(context, "${widget.pageTitleName}"),
body: Container(
......
import 'package:flutter/material.dart';
import 'package:flutter_svg/svg.dart';
import 'package:generp/Utils/commonWidgets.dart';
import 'package:generp/screens/genTracker/GeneratorDetails.dart';
import 'package:generp/screens/genTracker/RegisterComplaint.dart';
import 'package:generp/screens/genTracker/ScanEnterGeneratorIDScreen.dart';
import 'package:generp/screens/genTracker/TagGenerator.dart';
import 'package:generp/screens/genTracker/TagLocation.dart';
import '../../Utils/app_colors.dart';
class Gentrackerdashboard extends StatefulWidget {
......
import 'package:flutter/material.dart';
class Taggenerator extends StatefulWidget {
const Taggenerator({super.key});
@override
State<Taggenerator> createState() => _TaggeneratorState();
}
class _TaggeneratorState extends State<Taggenerator> {
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}
import 'package:flutter/material.dart';
class Taglocation extends StatefulWidget {
const Taglocation({super.key});
@override
State<Taglocation> createState() => _TaglocationState();
}
class _TaglocationState extends State<Taglocation> {
@override
Widget build(BuildContext context) {
return const Placeholder();
}
}
......@@ -16,7 +16,7 @@ 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.80+84
version: 1.0.81+85
environment:
sdk: ^3.7.2
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment