Discover gists
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
School of Nursing, UCH, Ibadan 2025/2026 {O8125777035} Admission Form Is STILL ON SALE.. Call DR.MRS ALICE OGUNSOLA on {O8125777035}.The Management of the school hereby inform the general public of the sales of the general Nursing Admission form into the School of Nursing, Also midwifery, post-basic midwifery form, post-basic nursing form and internship form are still on sale for more information on purchase of the form and admission assistance call Admin Officer{O8125777035} |
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
@Composable | |
internal fun HintsContainer( | |
modifier: Modifier, | |
anchors: () -> List<HintAnchorState>, | |
) { | |
val anchors = anchors() | |
Layout( | |
modifier = modifier | |
.overlayBackground(anchors), |
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
Log uploaded on Tuesday, February 11, 2025, 7:07:08 PM | |
Loaded mods: | |
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1) | |
Core(Ludeon.RimWorld): (no assemblies) | |
Ideology(Ludeon.RimWorld.Ideology): (no assemblies) | |
Biotech(Ludeon.RimWorld.Biotech): (no assemblies) | |
HugsLib(UnlimitedHugs.HugsLib)[ov:11.0.4]: 0Harmony(av:2.3.3,fv:1.2.0.1), HugsLib(av:1.0.0,fv:11.0.4) | |
[Sub_Mod] Geological Landforms [PL](PL.GeologicalLandforms.PL): (no assemblies) | |
[WD] Reinforced Doors(Wemd.ReinforcedDoors): (no assemblies) | |
Advanced Mechanoids(Sobb.AdvancedMechanoids): Advanced Mechanoids(1.0.0) |
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
// Dualite Generated Code | |
import 'package:flutter/material.dart'; | |
import 'package:http/http.dart' as http; | |
import 'dart:convert'; |
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
@Composable | |
fun rememberHintContainer(content: @Composable () -> Unit): Hint { | |
return rememberHint { | |
Box( | |
modifier = Modifier | |
.padding(top = 8.dp) | |
.background(Color.Yellow, shape = RoundedCornerShape(16.dp)) | |
.padding(16.dp), | |
) { | |
CompositionLocalProvider( |
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
val topAppBarHint = rememberHint { | |
OutlinedButton(onClick = {}) { Text("Hint for TopAppBar") } | |
} | |
val topAppBarActionHintAnchor = rememberHintAnchorState(topAppBarHint) | |
val actionHint = rememberHint { | |
Text("Hint for Action") | |
} | |
val actionHintAnchor = rememberHintAnchorState(actionHint) |
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
@Composable | |
fun HintOverlay( | |
anchors: () -> List<HintAnchorState>, | |
) { | |
//... | |
BoxWithConstraints( | |
modifier = Modifier | |
.fillMaxSize() | |
.overlayBackground(anchors) | |
) { |
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
@Stable | |
class HintAnchorState internal constructor( | |
internal val hint: Hint, | |
) { | |
//...other states here | |
} | |
@Composable | |
fun rememberHintAnchorState(hint: Hint): HintAnchorState { | |
return remember(hint) { |
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
Pipeline still running ... | |
PipelineRun is still running: Tasks Completed: 45 (Failed: 0, Cancelled 0), Incomplete: 2, Skipped: 7 | |
[get-pr-number : parse-pr-url] + echo -n 5178 | |
[get-pr-number : parse-pr-url] + tee /tekton/results/git_pr_number | |
[get-pr-number : parse-pr-url] 5178 | |
[acquire-lease : create-lease] + calculate_duration_in_seconds 90m | |
[acquire-lease : create-lease] + '[' m == m ']' | |
[acquire-lease : create-lease] + TOTAL_DURATION_IN_SECONDS=5400 | |
[acquire-lease : create-lease] + export TOTAL_DURATION_IN_SECONDS |
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
@Stable | |
class Hint internal constructor() { | |
internal var content: @Composable () -> Unit by mutableStateOf({}) | |
} | |
@Composable | |
fun rememberHint(content: @Composable () -> Unit): Hint { | |
return remember { | |
Hint().also { it.content = content } |