Skip to content

Commit

Permalink
Dart format
Browse files Browse the repository at this point in the history
  • Loading branch information
ademar111190 committed Oct 9, 2023
1 parent b170533 commit 0b3ea77
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/routes/network/widget/mempool_settings_widget.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ class _MempoolSettingsWidgetState extends State<MempoolSettingsWidget> {

return BlocBuilder<NetworkSettingsBloc, NetworkSettingsState>(
builder: (context, state) {
_log.fine("Building: $state, userChanged: $_userChanged, saving: $_saving, errorOnSave: $_errorOnSave");
_log.fine(
"Building: $state, userChanged: $_userChanged, saving: $_saving, errorOnSave: $_errorOnSave");
if (_mempoolUrlController.text.isEmpty && !_userChanged) {
_mempoolUrlController.text = state.mempoolUrl;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ class WithdrawFundsAvailableBtc extends StatelessWidget {
padding: const EdgeInsets.only(left: 3.0),
child: BlocBuilder<AccountBloc, AccountState>(
builder: (context, account) {
_log.fine("Building with wallet balance: ${account.walletBalance} balance: ${account.balance}");
_log.fine(
"Building with wallet balance: ${account.walletBalance} balance: ${account.balance}");
return BlocBuilder<CurrencyBloc, CurrencyState>(
builder: (context, currencyState) {
return Text(
Expand Down

0 comments on commit 0b3ea77

Please sign in to comment.