mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-07 03:29:29 +00:00
Update app label and branding to "Vaani"
This commit is contained in:
parent
6df55a5d0d
commit
1c95d1e4bb
7 changed files with 8 additions and 7 deletions
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
|
|
@ -18,7 +18,8 @@
|
||||||
"riverpod",
|
"riverpod",
|
||||||
"shelfsdk",
|
"shelfsdk",
|
||||||
"tapable",
|
"tapable",
|
||||||
"unfocus"
|
"unfocus",
|
||||||
|
"Vaani"
|
||||||
],
|
],
|
||||||
"cmake.configureOnOpen": false
|
"cmake.configureOnOpen": false
|
||||||
}
|
}
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# whispering_pages
|
# Vaani
|
||||||
|
|
||||||
A new Flutter project.
|
A new Flutter project.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -108,7 +108,7 @@ class OnboardingSinglePage extends HookConsumerWidget {
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.all(8.0),
|
padding: const EdgeInsets.all(8.0),
|
||||||
child: Text(
|
child: Text(
|
||||||
'Welcome to Whispering Pages',
|
'Welcome to Vaani',
|
||||||
style: Theme.of(context).textTheme.headlineSmall,
|
style: Theme.of(context).textTheme.headlineSmall,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ class HomePage extends HookConsumerWidget {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: GestureDetector(
|
title: GestureDetector(
|
||||||
child: const Text('Whispering Pages'),
|
child: const Text('Vaani'),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
// scroll to the top of the page
|
// scroll to the top of the page
|
||||||
scrollController.animateTo(
|
scrollController.animateTo(
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ class LibraryPage extends HookConsumerWidget {
|
||||||
return Scaffold(
|
return Scaffold(
|
||||||
appBar: AppBar(
|
appBar: AppBar(
|
||||||
title: GestureDetector(
|
title: GestureDetector(
|
||||||
child: const Text('Whispering Pages'),
|
child: const Text('Vaani'),
|
||||||
onTap: () {
|
onTap: () {
|
||||||
// scroll to the top of the page
|
// scroll to the top of the page
|
||||||
scrollController.animateTo(
|
scrollController.animateTo(
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ import 'package:flutter/foundation.dart' show immutable;
|
||||||
class AppMetadata {
|
class AppMetadata {
|
||||||
const AppMetadata._();
|
const AppMetadata._();
|
||||||
// TODO: use the packageinfo package to get the app name
|
// TODO: use the packageinfo package to get the app name
|
||||||
static const String appName = 'Whispering Pages';
|
static const String appName = 'Vaani';
|
||||||
|
|
||||||
static get appNameLowerCase => appName.toLowerCase().replaceAll(' ', '_');
|
static get appNameLowerCase => appName.toLowerCase().replaceAll(' ', '_');
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ class MyDrawer extends StatelessWidget {
|
||||||
children: [
|
children: [
|
||||||
const DrawerHeader(
|
const DrawerHeader(
|
||||||
child: Text(
|
child: Text(
|
||||||
'Whispering Pages',
|
'Vaani',
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontStyle: FontStyle.italic,
|
fontStyle: FontStyle.italic,
|
||||||
fontSize: 30,
|
fontSize: 30,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue