0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Flutter pub.devの私用パッケージまとめメモ

Last updated at Posted at 2022-04-12

flutter_native_splash

splash画面用パッケージ

# 変更反映する時はこれする(しないと画像変わらない)
# After adding your settings, run the following command in the terminal
flutter pub run flutter_native_splash:create

logger

ログ出力用パッケージ

# install
flutter pub add logger
# You can log with different levels:
logger.v("Verbose log");
logger.d("Debug log");
logger.i("Info log");
logger.w("Warning log");
logger.e("Error log");
logger.wtf("What a terrible failure log");
# To show only specific log levels, you can set:
Logger.level = Level.warning;
# demo
logger.d('Log message with 2 methods');
loggerNoStack.i('Info message');
loggerNoStack.w('Just a warning!');
logger.e('Error! Something bad happened', 'Test Error');
loggerNoStack.v({'key': 5, 'value': 'something'});
Logger(printer: SimplePrinter(colors: true)).v('boom');

logger demo

随時追記予定

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?