mirror of
https://github.com/qinglong-app/qinglong_app.git
synced 2025-10-09 16:48:19 +08:00
117 lines
2.8 KiB
Dart
117 lines
2.8 KiB
Dart
import 'package:example/custom_code_box.dart';
|
|
// import 'package:example/readme/readme_examples.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:url_launcher/url_launcher.dart';
|
|
// ignore: import_of_legacy_library_into_null_safe
|
|
import 'package:font_awesome_flutter/font_awesome_flutter.dart';
|
|
|
|
void main() {
|
|
runApp(MyApp());
|
|
}
|
|
|
|
class MyApp extends StatelessWidget {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
title: 'Code field',
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.blueGrey,
|
|
),
|
|
home: HomePage(),
|
|
);
|
|
}
|
|
}
|
|
|
|
class HomePage extends StatefulWidget {
|
|
HomePage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_HomePageState createState() => _HomePageState();
|
|
}
|
|
|
|
class _HomePageState extends State<HomePage> {
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
super.dispose();
|
|
}
|
|
|
|
Future _launchInBrowser(String url) async {
|
|
if (await canLaunch(url)) {
|
|
await launch(
|
|
url,
|
|
forceSafariVC: false,
|
|
forceWebView: false,
|
|
headers: <String, String>{'my_header_key': 'my_header_value'},
|
|
);
|
|
} else {
|
|
throw 'Could not launch $url';
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final preset = <String>[
|
|
"dart|monokai-sublime",
|
|
"python|atom-one-dark",
|
|
"cpp|an-old-hope",
|
|
"java|a11y-dark",
|
|
"javascript|vs",
|
|
];
|
|
List<Widget> children = preset.map((e) {
|
|
final parts = e.split('|');
|
|
print(parts);
|
|
final box = CustomCodeBox(
|
|
language: parts[0],
|
|
theme: parts[1],
|
|
);
|
|
return Padding(
|
|
padding: EdgeInsets.only(bottom: 32.0),
|
|
child: box,
|
|
);
|
|
}).toList();
|
|
final page = Center(
|
|
child: Container(
|
|
constraints: BoxConstraints(maxWidth: 900),
|
|
padding: EdgeInsets.symmetric(vertical: 32.0),
|
|
child: Column(children: children),
|
|
),
|
|
);
|
|
|
|
// return Scaffold(
|
|
// appBar: AppBar(),
|
|
// body: CodeEditor(),
|
|
// );
|
|
|
|
return Scaffold(
|
|
backgroundColor: Color(0xFF363636),
|
|
appBar: AppBar(
|
|
backgroundColor: Color(0xff23241f),
|
|
title: Text("CodeField demo"),
|
|
// title: Text("Recursive Fibonacci"),
|
|
centerTitle: false,
|
|
actions: [
|
|
TextButton.icon(
|
|
style: TextButton.styleFrom(
|
|
padding: EdgeInsets.symmetric(horizontal: 8.0),
|
|
primary: Colors.white,
|
|
),
|
|
icon: Icon(FontAwesomeIcons.github),
|
|
onPressed: () =>
|
|
_launchInBrowser("https://github.com/BertrandBev/code_field"),
|
|
label: Text("GITHUB"),
|
|
),
|
|
SizedBox(width: 8.0),
|
|
],
|
|
),
|
|
body: SingleChildScrollView(child: page),
|
|
// body: CodeEditor5(),
|
|
);
|
|
}
|
|
}
|