Question: Filling in a plot with multiple(plot)

This is what I do. 

 

f1(x):=sqrt(x);

f2(x):=x^(2);

with (plots):multiple(plot,[f2(x),x=0..1,y=0..1,filled=true,color=white], [f1(x),x=0..1,y=0..1,filled=true,color=blue,axes=boxed]);

 

My problem and question is.. it doesn't display the plot that I wanted ( a leaf) and neither does it fill it in with blue. What am I doing wrong?  

 

Please Wait...