Skip to content

Commit

Permalink
some finishign touches
Browse files Browse the repository at this point in the history
  • Loading branch information
mardukpill committed Nov 5, 2023
1 parent 327fe07 commit 8064cf9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion howareu/screens/EntryScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ bucktoothImages.reverse(); // OOPS THEY ARE BACKWARDS.


const EntryScreen = () => {
const [sliderValue, setSliderValue] = useState(0);
const [sliderValue, setSliderValue] = useState(11);
const [textInputValue, setTextInputValue] = useState('');
const [currentImage, setCurrentImage] = useState(bucktoothImages[11]);

Expand Down
7 changes: 5 additions & 2 deletions howareu/screens/OverviewScreen.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,16 @@ import { BUCKTOOTH09 } from '../assets';
import { BUCKTOOTH10 } from '../assets';
import { BUCKTOOTH11 } from '../assets';

let bucktoothImages = [
const bucktoothImages = [
BUCKTOOTH00, BUCKTOOTH01, BUCKTOOTH02, BUCKTOOTH03, BUCKTOOTH04, BUCKTOOTH05,
BUCKTOOTH06, BUCKTOOTH07, BUCKTOOTH08, BUCKTOOTH09, BUCKTOOTH10, BUCKTOOTH11
];

bucktoothImages.reverse(); // I DIDNT EXPECT TO USE THESE AGAIN LMAO

const calendarTheme = {

}

const OverviewScreen = () => {
const [selected, setSelected] = useState('');
Expand All @@ -50,7 +53,7 @@ const OverviewScreen = () => {

useFocusEffect( () => {
fetchEntries();
})
});

useEffect(() => {
const entriesForDay = entries.filter(entry => {
Expand Down

0 comments on commit 8064cf9

Please sign in to comment.