You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cloudsolutions-atoms/lib/new_views/pages/report_bug_page.dart

23 lines
589 B
Dart

import 'package:flutter/material.dart';
import 'package:test_sa/extensions/widget_extensions.dart';
import '../common_widgets/default_app_bar.dart';
class ReportBugPage extends StatelessWidget {
static const id = "/report_bug_page";
const ReportBugPage({Key key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: const DefaultAppBar(title: "Help Center"),
body: Card(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [],
).paddingAll(16),
).paddingAll(16),
);
}
}