import 'package:flutter/material.dart';
class BuildConfigScreen extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('Build Configuration'),
),
body: Padding(
padding: EdgeInsets.all(16),
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'Build Configuration Details',
style: TextStyle(fontSize: 24, fontWeight: FontWeight.bold),
),
SizedBox(height: 16),
Text('App Name: MyApp'),
SizedBox(height: 8),
Text('Version: 1.0.0'),
SizedBox(height: 8),
Text('Build Type: debug'),
SizedBox(height: 8),
Text('Min SDK: 21'),
SizedBox(height: 8),
Text('Target SDK: 33'),
],
),
),
);
}
}
This screen uses a Scaffold with an AppBar titled 'Build Configuration'. Inside the body, a Padding widget adds space around the content. A Column arranges the text vertically, aligned to the start (left). The title text uses a larger font size and bold weight to stand out. Each build detail is shown in its own Text widget with vertical spacing using SizedBox for clarity and neat layout.