Created prototype home screen

This commit is contained in:
Matic Ivešić 2026-03-03 21:26:01 +01:00
parent 096d2ca94e
commit c5979cbc26
4 changed files with 189 additions and 110 deletions

View File

@ -0,0 +1,35 @@
import 'package:flutter/material.dart';
class AddSubjectCard extends StatelessWidget {
final VoidCallback onTap;
const AddSubjectCard({super.key, required this.onTap});
@override
Widget build(BuildContext context) {
return InkWell(
onTap: onTap, // This triggers the function when clicked
borderRadius: BorderRadius.circular(12.0), // Matches your container
child: Container(
decoration: BoxDecoration(
color: Colors.transparent,
borderRadius: BorderRadius.circular(12.0),
border: Border.all(
color: const Color.fromARGB(255, 128, 128, 128),
width: 5.0,
),
),
child: const Center(
child: Text(
"+",
style: TextStyle(
color: Color.fromARGB(255, 128, 128, 128),
fontSize: 40.0,
fontWeight: FontWeight.bold,
),
),
),
),
);
}
}

View File

@ -0,0 +1,41 @@
import 'package:flutter/material.dart';
class SubjectCard extends StatelessWidget {
final String subject;
final Color color;
final VoidCallback onTap;
const SubjectCard({
super.key,
required this.subject,
required this.color,
required this.onTap,
});
@override
Widget build(BuildContext context) {
return InkWell(
onTap: onTap,
borderRadius: BorderRadius.circular(12.0),
child: Ink(
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(12.0),
gradient: LinearGradient(
begin: Alignment.topLeft,
end: Alignment.bottomRight,
colors: [color, Color.lerp(color, Colors.black, 0.15)!],
),
),
child: Center(
child: Text(
subject,
style: const TextStyle(
color: Color.fromARGB(167, 255, 255, 255),
fontSize: 40.0,
fontWeight: FontWeight.bold,
),
),
),
),
);
}
}

View File

@ -1,4 +1,5 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:nestly_flash/screens/subjects.dart';
void main() { void main() {
runApp(const MyApp()); runApp(const MyApp());
@ -6,117 +7,8 @@ void main() {
class MyApp extends StatelessWidget { class MyApp extends StatelessWidget {
const MyApp({super.key}); const MyApp({super.key});
// This widget is the root of your application.
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return MaterialApp( return MaterialApp(home: const Subjects());
title: 'Flutter Demo',
theme: ThemeData(
// This is the theme of your application.
//
// TRY THIS: Try running your application with "flutter run". You'll see
// the application has a purple toolbar. Then, without quitting the app,
// try changing the seedColor in the colorScheme below to Colors.green
// and then invoke "hot reload" (save your changes or press the "hot
// reload" button in a Flutter-supported IDE, or press "r" if you used
// the command line to start the app).
//
// Notice that the counter didn't reset back to zero; the application
// state is not lost during the reload. To reset the state, use hot
// restart instead.
//
// This works for code too, not just values: Most code changes can be
// tested with just a hot reload.
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
// This widget is the home page of your application. It is stateful, meaning
// that it has a State object (defined below) that contains fields that affect
// how it looks.
// This class is the configuration for the state. It holds the values (in this
// case the title) provided by the parent (in this case the App widget) and
// used by the build method of the State. Fields in a Widget subclass are
// always marked "final".
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int _counter = 0;
void _incrementCounter() {
setState(() {
// This call to setState tells the Flutter framework that something has
// changed in this State, which causes it to rerun the build method below
// so that the display can reflect the updated values. If we changed
// _counter without calling setState(), then the build method would not be
// called again, and so nothing would appear to happen.
_counter++;
});
}
@override
Widget build(BuildContext context) {
// This method is rerun every time setState is called, for instance as done
// by the _incrementCounter method above.
//
// The Flutter framework has been optimized to make rerunning build methods
// fast, so that you can just rebuild anything that needs updating rather
// than having to individually change instances of widgets.
return Scaffold(
appBar: AppBar(
// TRY THIS: Try changing the color here to a specific color (to
// Colors.amber, perhaps?) and trigger a hot reload to see the AppBar
// change color while the other colors stay the same.
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
// Here we take the value from the MyHomePage object that was created by
// the App.build method, and use it to set our appbar title.
title: Text(widget.title),
),
body: Center(
// Center is a layout widget. It takes a single child and positions it
// in the middle of the parent.
child: Column(
// Column is also a layout widget. It takes a list of children and
// arranges them vertically. By default, it sizes itself to fit its
// children horizontally, and tries to be as tall as its parent.
//
// Column has various properties to control how it sizes itself and
// how it positions its children. Here we use mainAxisAlignment to
// center the children vertically; the main axis here is the vertical
// axis because Columns are vertical (the cross axis would be
// horizontal).
//
// TRY THIS: Invoke "debug painting" (choose the "Toggle Debug Paint"
// action in the IDE, or press "p" in the console), to see the
// wireframe for each widget.
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
const Text('You have pushed the button this many times:'),
Text(
'$_counter',
style: Theme.of(context).textTheme.headlineMedium,
),
],
),
),
floatingActionButton: FloatingActionButton(
onPressed: _incrementCounter,
tooltip: 'Increment',
child: const Icon(Icons.add),
), // This trailing comma makes auto-formatting nicer for build methods.
);
} }
} }

111
lib/screens/subjects.dart Normal file
View File

@ -0,0 +1,111 @@
import 'package:flutter/material.dart';
import 'package:nestly_flash/cards/subject_card.dart';
import 'package:nestly_flash/cards/add_subject_card.dart';
class Subjects extends StatelessWidget {
const Subjects({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
leading: Builder(
builder: (context) {
return IconButton(
icon: Icon(
Icons.menu,
color: const Color.fromARGB(255, 228, 228, 228),
),
onPressed: () {
Scaffold.of(context).openDrawer();
},
);
},
),
actions: [
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16.0),
child: Center(
child: Container(
padding: const EdgeInsets.symmetric(
horizontal: 8.0,
vertical: 4.0,
),
decoration: BoxDecoration(
color: Colors.orange.withOpacity(0.2),
borderRadius: BorderRadius.circular(20),
),
child: Row(
children: const [
Text(
"123",
style: TextStyle(
fontWeight: FontWeight.bold,
color: Color.fromARGB(255, 221, 221, 221),
),
),
SizedBox(width: 4),
Icon(Icons.monetization_on, color: Colors.orange, size: 20),
],
),
),
),
),
],
backgroundColor: const Color.fromARGB(255, 24, 24, 24),
),
body: Padding(
padding: const EdgeInsets.all(0),
child: GridView.builder(
padding: const EdgeInsets.all(16.0),
gridDelegate: const SliverGridDelegateWithFixedCrossAxisCount(
crossAxisCount: 2,
crossAxisSpacing: 20.0,
mainAxisSpacing: 20.0,
childAspectRatio: 1.5,
),
itemCount: subjects.length + 1,
itemBuilder: (context, index) {
if (index == subjects.length) {
return AddSubjectCard(
onTap: () {
print("Addung new subject...");
},
);
}
return SubjectCard(
subject: subjects[index],
color: subjectColors[index],
onTap: () {
print("Opening subject: ${subjects[index]}");
},
);
},
),
),
backgroundColor: Color.fromARGB(255, 14, 14, 14),
floatingActionButton: FloatingActionButton(
onPressed: () {
// Logic to start a study session
print("Play button pressed!");
},
backgroundColor: Colors.blue,
child: const Icon(
Icons.play_arrow_rounded,
size: 40,
color: Colors.white,
),
),
);
}
}
List<String> subjects = ["LA", "RK", "VS", "OS", "TIS"];
List<Color> subjectColors = [
Color.fromARGB(255, 148, 34, 34),
Color.fromARGB(255, 29, 143, 29),
Color.fromARGB(255, 41, 75, 168),
Color.fromARGB(255, 184, 184, 60),
Color.fromARGB(255, 190, 70, 190),
];