Fix typo in constant names
This commit is contained in:
parent
486318acac
commit
f37af74687
6 changed files with 145 additions and 4 deletions
31
lib/pages/RegisterAccount.dart
Normal file
31
lib/pages/RegisterAccount.dart
Normal file
|
@ -0,0 +1,31 @@
|
|||
import 'package:flutter/material.dart';
|
||||
import 'package:zontreck/Constants.dart';
|
||||
|
||||
class RegisterAccountPage extends StatefulWidget {
|
||||
RegisterAccountPage({super.key});
|
||||
|
||||
@override
|
||||
RegisterAccountState createState() => RegisterAccountState();
|
||||
}
|
||||
|
||||
class RegisterAccountState extends State<RegisterAccountPage> {
|
||||
RegisterAccountState();
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: Text("OpenSim - Register Account"),
|
||||
backgroundColor: Constants.TITLEBAR_COLOR,
|
||||
),
|
||||
body: Padding(
|
||||
padding: EdgeInsets.all(8),
|
||||
child: SingleChildScrollView(
|
||||
child: Column(
|
||||
children: [],
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue