mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
16 lines
360 B
Dart
16 lines
360 B
Dart
import 'package:divkit/divkit.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
|
|
import 'src/app.dart';
|
|
|
|
void main() {
|
|
// DivKit log output
|
|
logger
|
|
..keepLog = kDebugMode
|
|
..onLog = print;
|
|
|
|
return runApp(const ProviderScope(child: PlaygroundApp()));
|
|
}
|