Loger in Mobile App
This commit is contained in:
15
lib/core/logger.dart
Normal file
15
lib/core/logger.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
import 'package:kmobile/core/toast.dart';
|
||||
|
||||
class Logger {
|
||||
static void info(String message) {
|
||||
showToast('INFO: $message');
|
||||
}
|
||||
|
||||
static void warning(String message) {
|
||||
showToast('WARNING: $message');
|
||||
}
|
||||
|
||||
static void error(String message) {
|
||||
showToast('ERROR: $message');
|
||||
}
|
||||
}
|
||||
14
lib/core/toast.dart
Normal file
14
lib/core/toast.dart
Normal file
@@ -0,0 +1,14 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:fluttertoast/fluttertoast.dart';
|
||||
|
||||
void showToast(String message) {
|
||||
Fluttertoast.showToast(
|
||||
msg: message,
|
||||
toastLength: Toast.LENGTH_SHORT,
|
||||
gravity: ToastGravity.BOTTOM,
|
||||
timeInSecForIosWeb: 1,
|
||||
backgroundColor: Colors.black,
|
||||
textColor: Colors.white,
|
||||
fontSize: 16.0,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user