Files
GitJournal/lib/main_webview.dart
Vishesh Handa 650763a1bd Comment out flutter_webview plugin
It wasn't being used. It was just an experiment which was never shipped.
Plus it hasn't been ported to null safety
2021-04-06 13:18:28 +02:00

43 lines
861 B
Dart

/*
import 'package:flutter/material.dart';
import 'package:gitjournal/widgets/katex_widget.dart';
void main() => runApp(MyApp());
/// This Widget is the main application widget.
class MyApp extends StatelessWidget {
static const String _title = 'Flutter Code Sample';
@override
Widget build(BuildContext context) {
return MaterialApp(
title: _title,
home: MyWidget(),
);
}
}
class MyWidget extends StatelessWidget {
MyWidget({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Sample Code'),
),
body: Center(
child: Column(
children: <Widget>[
KatexWidget(r"\\pm\\sqrt{a^2 + b^2}"),
KatexWidget(r"\\pm\\sqrt{c^2 + d^2}"),
],
),
),
);
}
}
*/