Skip to content

Commit

Permalink
Revert identation
Browse files Browse the repository at this point in the history
  • Loading branch information
pshenmic committed Feb 20, 2024
1 parent 4e264db commit 25bd81a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/routes/invoice.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ class ShowInvoice extends StatelessWidget {
}

class InvoicePage extends StatefulWidget {
InvoicePage({Key? key, this.id}) : super(key: key);
InvoicePage({Key? key, required this.id}) : super(key: key);

final String? id;
final String id;

@override
_InvoicePageState createState() => _InvoicePageState(id ?? '');
_InvoicePageState createState() => _InvoicePageState(id);
}

class _InvoicePageState extends State<InvoicePage> {
Expand Down Expand Up @@ -585,9 +585,9 @@ class _InvoicePageState extends State<InvoicePage> {

Widget _InvoiceComponent() {
return AnimatedOpacity(
opacity: _invoiceReady ? 1.0 : 0.0,
duration: Duration(milliseconds: 300),
child: Column(
opacity: _invoiceReady ? 1.0 : 0.0,
duration: Duration(milliseconds: 300),
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Text(_successMessage,
Expand Down

0 comments on commit 25bd81a

Please sign in to comment.