Platform: Android & IOS
Languages: JavaScript
Framework: Expo Router & React Native
Copyright (C) 2023 Alex Lin alexlin1822@hotmail.com
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see https://www.gnu.org/licenses/.
- Button list for web resources
- Custom URL list for each web resource
- Parent Control
- No sleep screen
- Login / register
- Storge resources for each user
- One resource include:
title, icon, defualt page, allow page list (inclue title or url keyword, or the whole specific url ) Kid lock, full screen
- SignUp page
- Login page
- Member list page
List all member in family - Resource list page
list the preset resources, each resource show at a card view with title detail and entry button and a custom button to add resources to this user. Share button to share the resources to others users. - Web browser page (browser view and edit view)
Browser view just allow whitelist resource and show meno. If not allow page. it will go back to default page. Edit view has url bar and whitelist edit (add, edit delete whitelist and meno)
#### Account List object ####
const myAccount = {
accountID: accountID,
nickname: text_nickname,
username: text_username,
email: text_email,
password: text_password,
pin: text_pin,
status: "0",
};
#### Account profile object ####
const myAccountProfile = {
owner: accountID,
profile: {
setting1: "aa",
setting2: "bb",
},
memberlist: [
{
key: "0",
title: "Add Person",
description: "Add family member",
icon: "https://alexlin1822.github.io/aimage/0.png",
memo: "",
status: "0",
},
// {...}
],
};
#### Resource profile object ####
const myResourceProfile = {
owner: memberID,
resourcelist: [
{
rid: "0",
title: "Add resource",
description: "Add resource",
default_url: "https://www.google.com/",
icon: "https://www.google.com/favicon.ico",
memo: "",
status: "0",
url_include: "",
title_include: "",
whitelist: "",
use_url_include: true,
use_title_include: false,
use_whitelist: false,
last_url: "https://www.google.com/",
time_limit: "30",
},
// {...}
],
};
Use expo-router to build native navigation using files in the app/ directory.
npx create-expo-app -e with-router