Question: Please help do these things with my dart / flutter app im including using vs code. 2 0 - demonstrate a debugging breakpoint, in action

Please help do these things with my dart/flutter app im including using vs code. 20- demonstrate a debugging breakpoint, in action
20- demonstrate a conditional debugging breakpoint, in action
20- Demonstrate where to find all the properties of the Scaffold widget in your running app. You must use Dart Devtools.
20- Demonstrate breakpointing on a physical running device. class Palindrome {
static check(String s){
return _check(s,0, s.length -1);
}
static _check(String s, start, end){ if (start > end) return true;
while (!isLetterOrDigit(s, start)){
start++;
}
while (!isLetterOrDigit(s, end)){
end--;
}
bool matching =(s[start].toLowerCase()== s[end].toLowerCase());
return matching ?_check(s, start +1, end -1) : false;
}
}
bool isLetterOrDigit(String s, int idx)=>
s[idx].contains(RegExp(r'[\da-zA-Z]'));

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!