-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c7d586
commit 727143e
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import 'package:dvm/data/agenda.dart'; | ||
import 'package:dvm/templates/title_header_slide.dart'; | ||
import 'package:flutter/material.dart'; | ||
import 'package:slidex/components.dart'; | ||
|
||
final class Agenda02AsdfTitleSlide extends SlideWidget { | ||
const Agenda02AsdfTitleSlide({super.key}); | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
final theme = Theme.of(context); | ||
final body = Center( | ||
child: Text( | ||
'asdf を使って管理してみようかな...', | ||
style: theme.textTheme.titleLarge, | ||
), | ||
); | ||
return TitleHeaderSlide( | ||
title: Agenda.agenda02.title, | ||
body: body, | ||
); | ||
} | ||
|
||
@override | ||
String get speakerNote => ''' | ||
asdf を使って管理してみようかなと思い、使ってみたこともあったのですが'''; | ||
} |