123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- import 'package:flutter/material.dart';
- import 'package:namer_app/footer.dart';
- import 'package:namer_app/header.dart';
- import 'package:namer_app/service/addproj_serv.dart';
- class AddProjectPage extends StatelessWidget {
- const AddProjectPage({super.key});
- @override
- Widget build(BuildContext context) {
- var projname = TextEditingController();
- var projdesc = TextEditingController();
- return Scaffold(
- appBar: CustomAppbar(),
- backgroundColor: Colors.white,
- body: Column(
- mainAxisAlignment: MainAxisAlignment.spaceEvenly,
- children: [
- Center(
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: [
- Text(
- 'ADD PROJECT',
- style: TextStyle(color: Colors.black, fontSize: 48),
- ),
- ],
- )),
- Column(
- children: [
- Padding(
- padding: const EdgeInsets.all(8.0),
- child: SizedBox(
- width: 396,
- child: TextField(
- decoration: InputDecoration(
- border: OutlineInputBorder(),
- focusedBorder: OutlineInputBorder(
- borderRadius: BorderRadius.all(Radius.circular(12)),
- borderSide: BorderSide(color: Colors.black)),
- enabledBorder: OutlineInputBorder(
- borderRadius: BorderRadius.all(Radius.circular(12)),
- borderSide: BorderSide(color: Colors.black)),
- labelText: 'Enter Project Name', //todo get data
- labelStyle: TextStyle(color: Colors.black),
- filled: true,
- fillColor: Colors.white.withOpacity(0.25)),
- cursorColor: Colors.black,
- style: TextStyle(color: Colors.black),
- controller: projname,
- ),
- ),
- ),
- Padding(
- padding: const EdgeInsets.all(8.0),
- child: SizedBox(
- width: 396,
- child: TextField(
- decoration: InputDecoration(
- border: OutlineInputBorder(),
- focusedBorder: OutlineInputBorder(
- borderRadius: BorderRadius.all(Radius.circular(12)),
- borderSide: BorderSide(color: Colors.black)),
- enabledBorder: OutlineInputBorder(
- borderRadius: BorderRadius.all(Radius.circular(12)),
- borderSide: BorderSide(color: Colors.black)),
- labelText: 'Enter Project Description', //todo get data
- labelStyle: TextStyle(color: Colors.black),
- filled: true,
- fillColor: Colors.white.withOpacity(0.25)),
- cursorColor: Colors.black,
- style: TextStyle(color: Colors.black),
- controller: projdesc,
- ),
- ),
- ),
- Padding(
- padding: const EdgeInsets.all(20.0),
- child: SizedBox(
- width: 396,
- height: 61,
- child: ElevatedButton(
- onPressed: () => addproject(context, projname.text, projdesc.text),
- style: ElevatedButton.styleFrom(
- backgroundColor: Colors.black, //todo putih lage
- side: BorderSide(color: Colors.white),
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(12.0),
- ),
- ),
- child: Text(
- 'Save',
- style: TextStyle(color: Colors.white),
- ),
- ),
- ),
- ),
- ],
- ),
- ],
- ),
- bottomNavigationBar: Footer(),
- );
- }
- }
|