mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
fix remaining package imports/exports
This commit is contained in:
parent
2b040963e5
commit
ec5fc6d2a5
6 changed files with 28 additions and 25 deletions
|
@ -8,7 +8,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
part of 'package:stackwallet/db/isar/main_db.dart';
|
||||
part of '../isar/main_db.dart';
|
||||
|
||||
enum CCFilter {
|
||||
all,
|
||||
|
|
|
@ -12,11 +12,12 @@ import 'package:another_flushbar/flushbar.dart';
|
|||
import 'package:another_flushbar/flushbar_route.dart' as flushRoute;
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_svg/svg.dart';
|
||||
|
||||
import '../themes/stack_colors.dart';
|
||||
import '../utilities/constants.dart';
|
||||
import '../utilities/enums/flush_bar_type.dart';
|
||||
|
||||
export 'package:stackwallet/utilities/enums/flush_bar_type.dart';
|
||||
export '../utilities/enums/flush_bar_type.dart';
|
||||
|
||||
Future<dynamic> showFloatingFlushBar({
|
||||
required FlushBarType type,
|
||||
|
|
|
@ -2,26 +2,25 @@ import '../../models/isar/models/blockchain_data/address.dart';
|
|||
import '../../models/node_model.dart';
|
||||
import '../../utilities/enums/derive_path_type_enum.dart';
|
||||
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/banano.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/bitcoin.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/bitcoin_frost.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/bitcoincash.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/dogecoin.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/ecash.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/epiccash.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/ethereum.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/firo.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/litecoin.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/monero.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/namecoin.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/nano.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/particl.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/peercoin.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/solana.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/stellar.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/tezos.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/coins/wownero.dart';
|
||||
export 'package:stackwallet/wallets/crypto_currency/crypto_currency.dart';
|
||||
export 'coins/banano.dart';
|
||||
export 'coins/bitcoin.dart';
|
||||
export 'coins/bitcoin_frost.dart';
|
||||
export 'coins/bitcoincash.dart';
|
||||
export 'coins/dogecoin.dart';
|
||||
export 'coins/ecash.dart';
|
||||
export 'coins/epiccash.dart';
|
||||
export 'coins/ethereum.dart';
|
||||
export 'coins/firo.dart';
|
||||
export 'coins/litecoin.dart';
|
||||
export 'coins/monero.dart';
|
||||
export 'coins/namecoin.dart';
|
||||
export 'coins/nano.dart';
|
||||
export 'coins/particl.dart';
|
||||
export 'coins/peercoin.dart';
|
||||
export 'coins/solana.dart';
|
||||
export 'coins/stellar.dart';
|
||||
export 'coins/tezos.dart';
|
||||
export 'coins/wownero.dart';
|
||||
|
||||
enum CryptoCurrencyNetwork {
|
||||
main,
|
||||
|
|
|
@ -9,12 +9,13 @@
|
|||
*/
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../themes/stack_colors.dart';
|
||||
import '../../utilities/text_styles.dart';
|
||||
import '../../utilities/util.dart';
|
||||
import 'custom_text_button.dart';
|
||||
|
||||
export 'package:stackwallet/widgets/desktop/custom_text_button.dart';
|
||||
export 'custom_text_button.dart';
|
||||
|
||||
class OutlineBlueButton extends StatelessWidget {
|
||||
const OutlineBlueButton({
|
||||
|
|
|
@ -9,12 +9,13 @@
|
|||
*/
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../themes/stack_colors.dart';
|
||||
import '../../utilities/text_styles.dart';
|
||||
import '../../utilities/util.dart';
|
||||
import 'custom_text_button.dart';
|
||||
|
||||
export 'package:stackwallet/widgets/desktop/custom_text_button.dart';
|
||||
export 'custom_text_button.dart';
|
||||
|
||||
class PrimaryButton extends StatelessWidget {
|
||||
const PrimaryButton({
|
||||
|
|
|
@ -9,12 +9,13 @@
|
|||
*/
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
import '../../themes/stack_colors.dart';
|
||||
import '../../utilities/text_styles.dart';
|
||||
import '../../utilities/util.dart';
|
||||
import 'custom_text_button.dart';
|
||||
|
||||
export 'package:stackwallet/widgets/desktop/custom_text_button.dart';
|
||||
export 'custom_text_button.dart';
|
||||
|
||||
class SecondaryButton extends StatelessWidget {
|
||||
const SecondaryButton({
|
||||
|
|
Loading…
Reference in a new issue